springMVC 몇 가지 페이지 회전 방식 소결
오늘은 주로 응답 인터페이스가 돌아가는 몇 가지 방식을 쓰겠습니다.
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";
}
이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
springmvc application/octet-stream problemmistake: Source code: Solution: Summarize: application/octet-stream is the original binary stream method. If the convers...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.