springmvc 配置映射器與適配器
<mvc:annotation-driven/>使用MVC注解驅動加載 適配器與映射器
使用注解驅動的同時還會添加了好多MVC參數(shù)綁定方法比如json轉換器
添加bean?
使用<bean class="springmvc.copy.Controller">來添加controller
但是單個controler添加比較麻煩
生產(chǎn)環(huán)境下我們使用以下組件來自動掃描controller坐在包目錄下的所有controller類
<context:component-scan base-package="springmvc.copy"/>
編寫 controler
package springmvc.copy;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
//使用注解標記這個類是控制器
@Controller
public class Controls {
//使用注解對url以及方法進行映射
@RequestMapping("index")
public ModelAndView quers() throws Exception {
ModelAndView andView = new ModelAndView();
andView.setViewName("newmod");
return andView;
}
}
視圖解析器前綴后綴的配置
測試