스프링 프로젝트 만든는법(2)
스프링 프로젝트 만든는법(2)
자바
8.web.xml에 아래를 추가한다.
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/app/*</url-pattern>
</servlet-mapping>
9.WEB-INF 우클릭후 NEW->Spring Bean Configuration FIle 클릭해서 위에 <servlet-name>에 사용한 spring에 -
servlet.xml을 더한
spring-servlet.xml로 입력후 Finish를 누르고 네임스페이스중 bean 과 context만 클릭한다. 그리고 생성된 파일에 아래
와 같이 넣는다.
<context:commponent-scan base-package="패키지명(com)"/>
10.src 밑에 패키지를 하나 만들고 그밑에 Cotroller class를 생성후 아래와 같이 입력한다.
package whiteship;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
@Controller