기록 > 기억
스프링 MVC 프로젝트 구조 본문
스프링 프로젝트 구조
스프링 프로젝트를 생성해 Hello World를 찍어보는 예제를 만들어 보겠습니다.
1. File - New - Other - Spring - Spring Project
2. 프로젝트명 입력 - Spring MVC Project 선택 - 패키지명 입력 - Finish
SpringStudy com.byson.hello
3. 톰캣에서 실행 - http://localhost:8080/hello/
정상적으로 Hello world 가 잘 찍히는 걸 볼 수 있습니다.
왼쪽에 패키지 익스플로러를 보면 기본적인 구조를 파악 할 수 있습니다.
src/main/java |
java 파일 작성 |
src/main/resources |
스프링 설정파일, 쿼리 작성 |
src/test/ |
테스트코드 작성 |
src/main/webapp |
메이븐 기본폴더로 하위폴더에 jsp파일, js 파일 작성 |
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
web.xml 은 서블릿 배포자로 WAS가 구동될 때 웹 어플리케이션 설정을 읽습니다.
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="com.byson.hello" />
</beans:beans>
서블릿 설정이 자동으로 prefix와 suffix를 붙여주기때문에 폴더경로와 .jsp를 붙이지 않도록 합니다.
@Controller
public class HomeController {
private static final Logger logger = LoggerFactory.getLogger(HomeController.class);
/**
* Simply selects the home view to render by returning its name.
*/
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model) {
logger.info("Welcome home! The client locale is {}.", locale);
Date date = new Date();
DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, locale);
String formattedDate = dateFormat.format(date);
model.addAttribute("serverTime", formattedDate );
return "home";
}
}
@RequestMapping 은 클라이언트에서 요청한 비지니스 로직을 찾는 역할을 합니다.
위에서 설명했듯이 return "home"; 은 /src/main/webapp/WEB-INF/views/home.jsp 를 의미합니다.
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page session="false" %>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>
Hello world!
</h1><P> The time on the server is ${serverTime}. </P>
</body>
</html>
컨트롤러에서 model.addAttribute("serverTime", formattedDate ); 를 보면 serverTime이라는 이름에 formattedDate 값을 넘겨주는 것을 의미합니다.
'프로그래밍 > Spring' 카테고리의 다른 글
Spring Project 생성하기 (0) | 2017.11.24 |
---|---|
Spring 개발환경 구축하기 (0) | 2017.11.24 |
properties 파일 읽어서 SP EL로 표현하기 (0) | 2017.11.07 |