springmvc如何从控制器的方法里跳到某个jsp页面 5
//编辑信息@RequestMapping(value={"/editInfo.do"},method={RequestMethod.GET,RequestMethod....
//编辑信息
@RequestMapping(value = { "/editInfo.do" }, method = { RequestMethod.GET,
RequestMethod.POST })
@ResponseBody
public String editInfo(ModelMap info,HttpServletRequest request,HttpServletResponse response) throws IOException{
String id = request.getParameter("id");
response.setContentType("application/xml;utf-8");
response.setCharacterEncoding("utf-8");
System.out.println(id);
Map<String, Object> map = findDao.findEditInfo(id);
info.putAll(map);
return "jsp1/edit";
}
我想从这个方法跳转到webroot下jsp1文件夹下的edit.jsp页面,但是每次走完上边的代码都会跳到下边这个地址,然后页面显示的是jsp1/edit
http://127.0.0.1:8080/SPRINGMVC/editInfo.do?id=01040630
------------------
谁知道怎样才能跳过去 展开
@RequestMapping(value = { "/editInfo.do" }, method = { RequestMethod.GET,
RequestMethod.POST })
@ResponseBody
public String editInfo(ModelMap info,HttpServletRequest request,HttpServletResponse response) throws IOException{
String id = request.getParameter("id");
response.setContentType("application/xml;utf-8");
response.setCharacterEncoding("utf-8");
System.out.println(id);
Map<String, Object> map = findDao.findEditInfo(id);
info.putAll(map);
return "jsp1/edit";
}
我想从这个方法跳转到webroot下jsp1文件夹下的edit.jsp页面,但是每次走完上边的代码都会跳到下边这个地址,然后页面显示的是jsp1/edit
http://127.0.0.1:8080/SPRINGMVC/editInfo.do?id=01040630
------------------
谁知道怎样才能跳过去 展开
展开全部
你现在这样好像都没有回跳吧,spring return的地址默认是在WEB-INF下了,不会按你写的跳你,你可以在spring配置文件,配置一下视图,如下:
<!-- 默认的视图解析配置 -->
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp"></property>
</bean>
可以按你想跳的地址配置,希望对你有所帮助。
<!-- 默认的视图解析配置 -->
<bean id="viewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp"></property>
</bean>
可以按你想跳的地址配置,希望对你有所帮助。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询