springMVC 몇 가지 페이지 회전 방식 소결

앞에서 Controller의 몇 가지 구성 방식을 이해했습니다.
오늘은 주로 응답 인터페이스가 돌아가는 몇 가지 방식을 쓰겠습니다.
1. 메모의 방식에서
1.1 HttpServletResponse API를 통해 직접 출력(렌더링 구성 불필요)
controller 클래스의 주요 코드

@Controller
public class RequestController{
 @RequestMapping("/resp")
  public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {

     resp.getWriter().println("hello HttpServletResponse");

  }
web.xml 구성

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
     version="3.1">

  <servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>
dispatcher-servlet.xml 주요 코드

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">

  <!-- -->
  <context:component-scan base-package="com.jsu.mvc"/>

</beans>
1.2 HttpServletResponse를 사용하여 다른 뷰로 리디렉션(기타 버전은 변경되지 않음)

  @RequestMapping("/resp")
  public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {

    resp.sendRedirect("index.jsp");

  }
}
1.3 HttpServletRequest 전송 사용(기본 액세스/아래 index.jsp 페이지는 렌더링기의 영향을 받지 않음)

@RequestMapping("/resp")
  public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {
    req.setAttribute("message","it's forword ");
    req.getRequestDispatcher("index.jsp").forward(req,resp);
    }
1.4 jsp 페이지의 이름을 직접 되돌려줍니다. (렌더링 없음)
다른 구성은 변경되지 않음

 @RequestMapping("/nice")
  public String hello1(){
    // 1
    return "home.jsp";
    // 2
    return "forward:index.jsp";
    // 
    return "redirect:index.jsp";
  }
1.5 렌더기가 지정한 경우

 @RequestMapping("/nice")
  public String hello1(){
    // 1
    return "home";
    // 2
    return "forward:index";
    //  hello requsrmapping
    return "redirect:hello";
  }
2view 사용
2.1 modelandview 사용
점프 페이지를 지정할 수 있는 보기 해상도가 필요합니다.

public class HelloController implements Controller {


  @Override
  public ModelAndView handleRequest(javax.servlet.http.HttpServletRequest httpServletRequest,
                   javax.servlet.http.HttpServletResponse httpServletResponse) throws Exception {

    ModelAndView mv = new ModelAndView();
    // 
    mv.addObject("msg","hello myfirst mvc");
    // 
    mv.setViewName("hello");
    return mv;

  }
}

[servlet-name]-servlet.xml

<!-- -->
  <!-- hellocontroller -->

  <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" />
  <bean id="viewResolver"
           class="org.springframework.web.servlet.view.UrlBasedViewResolver">
  <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
  <!-- -->
  <property name="prefix" value="/WEB-INF/jsp/"/>
  <!-- -->
  <property name="suffix" value=".jsp"/>
</bean>
  <bean name="/hello.do" class="com.jsu.mvc.HelloController"></bean>

2.2 모델뷰 사용
뷰 해상도가 필요하지 않아 점프 페이지를 지정할 수 없습니다.

 // modelmap 
  @RequestMapping("/modelmap")
  public String modelHello(String name,ModelMap map){
    map.addAttribute("name",name);
    System.out.println(name);

    return "index.jsp";
  }

이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오.

좋은 웹페이지 즐겨찾기