[IntelliJ] Spring Web MVC ํ๋ก์ ํธ ์์ฑ ๋ฐ ์ธํ - ์๋ฐ ์ค์ ์ฌ์ฉ
1. ํ๋ก์ ํธ ์์ฑ
์๋ก์ด Maven ํ๋ก์ ํธ๋ฅผ ์์ฑํ๋ค.
Create from archetype ์ฒดํฌ, maven-archetype-webapp์ ์ ํํ๊ณ Next ํด๋ฆญ
ํ๋ก์ ํธ ์ ๋ณด ์ ๋ ฅํ๊ณ Next ํด๋ฆญ
์ฌ์ฉํ Maven ์ ํ ํ Finish ํด๋ฆญ
๊ธฐ๋ณธ์ผ๋ก ์์ฑ๋๋ pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.atoz_develop</groupId>
<artifactId>project03</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>project03 Maven Webapp</name>
<!-- FIXME change it to the project's website -->
<url>http://www.example.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>project03</finalName>
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.2</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
maven-archetype-webapp์ผ๋ก ํ๋ก์ ํธ ์์ฑ ์ ๊ธฐ๋ณธ์ผ๋ก ์์ฑ๋๋ pom.xml์ ์์ ๊ฐ๋ค.
2. ์๋ฐ ๋ฒ์ ์ค์
๋จผ์ ์๋ฐ ์ปดํ์ผ๋ฌ ๋ฒ์ ์ ๋ณ๊ฒฝํ๋ค.
์ฌ๊ธฐ์๋ 8๋ก ๋ณ๊ฒฝํ๋๋ก ํ๊ฒ ๋ค.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
pom.xml์ <maven.compiler.source>, <maven.compiler.target>์ 8๋ก ๋ณ๊ฒฝํ๋ค.
IntelliJ Project Structure์์ ํ๋ก์ ํธ/๋ชจ๋์ Language level์ 8๋ก ๋ณ๊ฒฝํ๋ค.
Preferences์์ Build, Execution, Deployment - Compiler - Java Compiler ํด๋ฆญํ๊ณ ํ๋ก์ ํธ/๋ชจ๋์ Target bytecode version์ 8๋ก ๋ณ๊ฒฝํ๋ค.
์ด๋ ๊ฒ ์ธ ๊ฐ์ง๋ฅผ ์ค์ ํ๋ฉด ์๋ฐ ๋ฒ์ ์ค์ ์ ์๋ฃ๋๋ค.
3. ์์กด์ฑ ์ค์
๋ค์์ผ๋ก Spring MVC, Servlet/JSP API, jstl ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์์กด์ฑ์ ์ถ๊ฐํ๋ค.
์๋์ ๊ฐ์ด <properties>์ <dependencies>๋ฅผ ๋ณ๊ฒฝํ๋ฉด ๋๋ค.
์ด ์ค Spring MVC๋ ํ์์ด๊ณ Servlet/JSP API, jstl์ ์ ํ์ฌํญ์ด๋ค.
JSP ์ธ์ ๋ค๋ฅธ ๋ทฐ ํ ํ๋ฆฟ์ ์ฌ์ฉํ๋ค๋ฉด ํด๋น ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ถ๊ฐํ๋ค.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<spring-webmvc-version>5.2.6.RELEASE</spring-webmvc-version>
<javax.servlet-api-version>4.0.1</javax.servlet-api-version>
<javax.servlet.jsp-api-version>2.3.3</javax.servlet.jsp-api-version>
<javax.servlet.jsp.jstl-api-version>1.2.2</javax.servlet.jsp.jstl-api-version>
<taglibs-standard-impl-version>1.2.5</taglibs-standard-impl-version>
<junit-version>4.11</junit-version>
</properties>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring-webmvc-version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${javax.servlet-api-version}</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet.jsp/javax.servlet.jsp-api -->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>${javax.servlet.jsp-api-version}</version>
<scope>provided</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.servlet.jsp.jstl/javax.servlet.jsp.jstl-api -->
<dependency>
<groupId>javax.servlet.jsp.jstl</groupId>
<artifactId>javax.servlet.jsp.jstl-api</artifactId>
<version>${javax.servlet.jsp.jstl-api-version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.taglibs/taglibs-standard-impl -->
<dependency>
<groupId>org.apache.taglibs</groupId>
<artifactId>taglibs-standard-impl</artifactId>
<version>${taglibs-standard-impl-version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
4. ์น ์ดํ๋ฆฌ์ผ์ด์ ์ค์
XML๋ก ์คํ๋ง MVC ์ค์ ์ ํ ๋ web.xml์ ํ ์ค์ ๋ค์ ์๋ฐ๋ก ์ค์ ํ ๋๋ AbstractAnnotationConfigDispatcherServletInitializer๋ฅผ ์์ํ๋์ง WebApplicationInitializer ์ธํฐํ์ด์ค๋ฅผ ๊ตฌํํ๋ ๋ฐฉ๋ฒ์ผ๋ก ์ค์ ํ ์ ์๋ค.
AbstractAnnotationConfigDispatcherServletInitializer๋ฅผ ์์ํ๋ ๋ฐฉ๋ฒ์ด ๋ ์ฝ๊ณ ๊ฐ๋จํ์ง๋ง ์ค์ ์ ์์ ๋๊ฐ ๋จ์ด์ง๋ ํน์ง์ด ์๋ค.
WebApplicationInitializer ์ธํฐํ์ด์ค๋ฅผ ๊ตฌํํ๋ ๋ฐฉ๋ฒ์ ๊ธฐ์ค์ผ๋ก ๋ณด๊ณ ๋ค์์ AbstractAnnotationConfigDispatcherServletInitializer๋ฅผ ์์ํ๋ ๋ฐฉ๋ฒ์ ์ดํด๋ณผ ๊ฒ์ด๋ค.
1) WebApplicationInitializer ์ธํฐํ์ด์ค๋ฅผ ๊ตฌํํ๋ ๋ฐฉ๋ฒ
config ํจํค์ง์ WebConfig, WebContext, RootContext ํด๋์ค๋ฅผ ์๋ก ์์ฑํ๋ค.
๊ฐ๊ฐ web.xml, web context config, root context config ์ญํ ์ ํ๋ค.
๋จผ์ WebConfig ํด๋์ค๋ ๋ค์๊ณผ ๊ฐ์ด ์์ฑํ๋ค.
WebConfig
public class WebConfig implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
}
}
โ DispatcherServlet ์ค์
public class WebConfig implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
// DispatcherServlet ์ค์ -s
// 1. DispatcherServlet WebApplicationContext ๊ฐ์ฒด ์์ฑ
AnnotationConfigWebApplicationContext webContext = new AnnotationConfigWebApplicationContext();
webContext.register(WebContext.class);
// 2. DispatcherServlet ๊ฐ์ฒด ์์ฑ ๋ฐ ์ถ๊ฐ
DispatcherServlet dispatcherServlet = new DispatcherServlet(webContext);
ServletRegistration.Dynamic servlet = servletContext.addServlet("dispatcher", dispatcherServlet);
// 3. ์๋ธ๋ฆฟ ๋งคํ ๋ฐ ๋ถ๊ฐ ์ค์
servlet.addMapping("/");
servlet.setLoadOnStartup(1);
// DispatcherServlet ์ค์ -e
}
}
์ด ์ฝ๋๋ web.xml์ ๋ค์ ์ค์ ๊ณผ ๋์ผํ ๋ด์ฉ์ด๋ค.
<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/config/webmvc-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>
โก Root Context Config ์ค์
public class WebConfig implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
// DispatcherServlet ์ค์ -s
// ...
// DispatcherServlet ์ค์ -e
// Root Context Config ์ค์ -s
AnnotationConfigWebApplicationContext rootContext = new AnnotationConfigWebApplicationContext();
rootContext.register(RootContext.class);
ContextLoaderListener listener = new ContextLoaderListener(rootContext);
servletContext.addListener(listener);
// Root Context Config ์ค์ -e
}
}
์ด ์ฝ๋๋ web.xml์ ๋ค์ ์ค์ ๊ณผ ๋์ผํ ๋ด์ฉ์ด๋ค.
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/config/root-context.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
โข Filter ์ค์
public class WebConfig implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
// DispatcherServlet ์ค์ -s
// ...
// DispatcherServlet ์ค์ -e
// Root Context Config ์ค์ -s
// ...
// Root Context Config ์ค์ -e
// Filter ์ค์ -s
FilterRegistration.Dynamic filter = servletContext.addFilter("encodingFilter", CharacterEncodingFilter.class);
filter.setInitParameter("encoding", "UTF-8");
filter.addMappingForServletNames(null, false, "dispatcher");
// Filter ์ค์ -e
}
}
์ด ์ฝ๋๋ web.xml์ ๋ค์ ์ค์ ๊ณผ ๋์ผํ ๋ด์ฉ์ด๋ค.
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
์ต์ข WebConfig ํด๋์ค
public class WebConfig implements WebApplicationInitializer {
@Override
public void onStartup(ServletContext servletContext) throws ServletException {
// DispatcherServlet ์ค์ -s
// 1. DispatcherServlet WebApplicationContext ๊ฐ์ฒด ์์ฑ
AnnotationConfigWebApplicationContext webContext = new AnnotationConfigWebApplicationContext();
webContext.register(WebContext.class);
// 2. DispatcherServlet ๊ฐ์ฒด ์์ฑ ๋ฐ ์ถ๊ฐ
DispatcherServlet dispatcherServlet = new DispatcherServlet(webContext);
ServletRegistration.Dynamic servlet = servletContext.addServlet("dispatcher", dispatcherServlet);
// 3. ์๋ธ๋ฆฟ ๋งคํ ๋ฐ ๋ถ๊ฐ ์ค์
servlet.addMapping("/");
servlet.setLoadOnStartup(1);
// DispatcherServlet ์ค์ -e
// Root Context Config ์ค์ -s
AnnotationConfigWebApplicationContext rootContext = new AnnotationConfigWebApplicationContext();
rootContext.register(RootContext.class);
ContextLoaderListener listener = new ContextLoaderListener(rootContext);
servletContext.addListener(listener);
// Root Context Config ์ค์ -e
// Filter ์ค์ -s
FilterRegistration.Dynamic filter = servletContext.addFilter("encodingFilter", CharacterEncodingFilter.class);
filter.setInitParameter("encoding", "UTF-8");
filter.addMappingForServletNames(null, false, "dispatcher");
// Filter ์ค์ -e
}
}
2) AbstractAnnotationConfigDispatcherServletInitializer๋ฅผ ์์ํ๋ ๋ฐฉ๋ฒ
์ง๊ธ๊น์ง WebApplicationInitializer ์ธํฐํ์ด์ค๋ฅผ ๊ตฌํํ๋ ๋ฐฉ๋ฒ์ ํตํด ์ค์ ํ ๊ฒ์ AbstractAnnotationConfigDispatcherServletInitializer๋ฅผ ์์ํ๋ ๋ฐฉ๋ฒ์ผ๋ก ์ค์ ํ๋ฉด ๋ค์๊ณผ ๊ฐ๋ค.
public class WebConfig extends AbstractAnnotationConfigDispatcherServletInitializer {
// DispatcherServlet ์ค์
@Override
protected String[] getServletMappings() {
return new String[] {"/"};
}
// Web Context Config ์ค์
@Override
protected Class<?>[] getServletConfigClasses() {
return new Class[] {WebContext.class};
}
// Root Context Config ์ค์
@Override
protected Class<?>[] getRootConfigClasses() {
return new Class[] {RootContext.class};
}
// Filter ์ค์
@Override
protected Filter[] getServletFilters() {
CharacterEncodingFilter encodingFilter = new CharacterEncodingFilter();
encodingFilter.setEncoding("UTF-8");
return new Filter[] {encodingFilter};
}
}
๋ ์ฝ๊ณ ๊ฐ๋จํ์ง๋ง ์ค์ ์ ์์ ๋๊ฐ ๋จ์ด์ง๋ค.
5. Web Context ์ค์
1) Controller ์ค์
WebContext ํด๋์ค๋ฅผ ๋ค์๊ณผ ๊ฐ์ด ์์ฑํ๋ค.
WebContext
@Configuration
@EnableWebMvc
@ComponentScan("com.atoz_develop.project04.controller")
public class WebContext implements WebMvcConfigurer {
}
์ด ์ฝ๋๋ web.xml์ ๋ค์ ์ค์ ๊ณผ ์ ์ฌํ ๋ด์ฉ์ด๋ค.
<!-- @Controller ์ ๋
ธํ
์ด์
์ฌ์ฉ -->
<annotation-driven/>
<!-- Component Scan ํจํค์ง ์ค์ -->
<context:component-scan base-package="com.atoz_develop.project03.controller"/>
2) ViewResolver ์ค์
@Configuration
@EnableWebMvc
@ComponentScan("com.atoz_develop.project03.controller")
public class WebContext implements WebMvcConfigurer {
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
WebMvcConfigurer.super.configureViewResolvers(registry);
// ViewResolver ์ค์
registry.jsp("/WEB-INF/views/", ".jsp");
}
}
configureViewResolvers()๋ฅผ overrideํ์ฌ ViewResolver๋ฅผ ์ค์ ํ๋ค.
์ด ์ฝ๋๋ xml์ ๋ค์ ์ค์ ๊ณผ ์ ์ฌํ ๋ด์ฉ์ด๋ค.
<!-- ๋ทฐ prefix, suffix ์ค์ -->
<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>
3) Static Resources ์ค์
@Configuration
@EnableWebMvc
@ComponentScan("com.atoz_develop.project03.controller")
public class WebContext implements WebMvcConfigurer {
//...
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
WebMvcConfigurer.super.addResourceHandlers(registry);
// Static Resources ์ค์
registry.addResourceHandler("/**").addResourceLocations("/resources/");
}
}
addResourceHandlers()๋ฅผ overrideํ์ฌ ์ ์ ๋ฆฌ์์ค๋ฅผ ์ค์ ํ๋ค.
์ด ์ฝ๋๋ xml์ ๋ค์ ์ค์ ๊ณผ ์ ์ฌํ ๋ด์ฉ์ด๋ค.
<!-- ์ ์ ๋ฆฌ์์ค ๊ฒฝ๋ก ์ค์ -->
<resources mapping="/**" location="/resources/"/>
์ต์ข WebContext ํด๋์ค
@Configuration
@EnableWebMvc
@ComponentScan("com.atoz_develop.project03.controller")
public class WebContext implements WebMvcConfigurer {
@Override
public void configureViewResolvers(ViewResolverRegistry registry) {
WebMvcConfigurer.super.configureViewResolvers(registry);
// ViewResolver ์ค์
registry.jsp("/WEB-INF/views/", ".jsp");
}
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
WebMvcConfigurer.super.addResourceHandlers(registry);
// Static Resources ์ค์
registry.addResourceHandler("/**").addResourceLocations("/resources/");
}
}
6. Root Context ์ค์
Root Context ์ค์ ํด๋์ค๋ ์ด๊ธฐ์ ์ค์ ํ ๊ฒ์ด ์๋ค.
@Configuration์ ๋ถ์ฌ์ ์ค์ ํด๋์ค๋ก ์ ์ธํ๊ณ ์ถํ ํ๋ก์ ํธ๋ฅผ ์งํํ๋ฉฐ ํ์ํ ๋น์ ๋ฑ๋กํ๋ฉด ๋๋ค.
RootContext
@Configuration
public class RootContext {
}
7. ํ ์คํธ
์ค์ ์ด ์ ๋๋ก ๋๋์ง ํ ์คํธํด๋ณด์.
์ ๊ทธ๋ฆผ์์ ์ ํ๋์ด ์๋ ํ์ผ๊ณผ ๋๋ ํ ๋ฆฌ๋ฅผ ์๋ก ์์ฑํ๋ค.
resources ์์๋ ํ ์คํธ์ฉ ์ด๋ฏธ์ง๋ฅผ ์๋ฌด๊ฑฐ๋ ํ๋ ๋ฃ์ด๋๋ค.
HelloController
package com.atoz_develop.project03.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "hello";
}
}
hello.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Hello Spring Web MVC</title>
</head>
<body>
<h1>Hello Spring Web MVC</h1>
<img src="spring.png"/>
</body>
</html>
๐ฅ ์คํ ๊ฒฐ๊ณผ
์์ ๊ฐ์ด /hello๋ก ์์ฒญํ์ ๋ ์คํ์ด ์ ๋๊ณ ์ด๋ฏธ์ง๊ฐ ์ ๋จ๋ฉด ๋ชจ๋ ์ค์ ์ด ์ ์์ ์ผ๋ก ์๋ฃ๋ ๊ฒ์ด๋ค.
๊ด๋ จ ๊ธ
- [IntelliJ] Spring Web MVC ํ๋ก์ ํธ ์์ฑ ๋ฐ ์ธํ - XML ์ค์ ์ฌ์ฉ
๋๊ธ