上期講解了第一入門案例以後接下來了解一下視圖解析器與URL-Pattern的配置方案web
先來講視圖解析器,在上次博客文章中咱們完成了入門案例,接下來咱們就在上一個例子中完善一下體出視圖解析器spring
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd "> <!-- 註冊視圖解析器 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 配置前綴後綴 --> <property name="prefix" value="WEB-INF/jsp/"></property> <property name="suffix" value=".jsp"></property> </bean> <!-- 註冊控制器--> <bean id="/hello.do" class="cn.lxp.controller.MyController"></bean> </beans>
配置好視圖解析器以後咱們的控制器類中的鎖定頁面就能夠直接寫頁面名稱不用管後綴與前綴了spring-mvc
public class MyController implements Controller {
/**
* handleRequest 處理請求
* ModelAndView 返回的類型
*/
@Override
public ModelAndView handleRequest(HttpServletRequest request,HttpServletResponse response) throws Exception {
ModelAndView mav=new ModelAndView();
mav.addObject("msg", "咱們天生愛分享!!");
//進行處理一道
mav.setViewName("index");
return mav;
}
}
咱們重啓服務器再來訪問,結果如圖顯示,說明咱們的視圖解析器起到了必定的做用!服務器
下面咱們來說解url-patternmvc
配置成/的話會攔截到靜態資源因此咱們來介紹如下三種解決方案,固然不止三種jsp