springmvc也屬於spring , 須要有spring的架包做爲支撐才能跑起來html
Spring提供的前端控制器,全部的請求都有通過它來統一分發。在DispatcherServlet將請求分發給Spring Controller以前,須要藉助於Spring提供的HandlerMapping定位到具體的Controller。前端
實現springmvc有兩種形式 java
( 1 )springmvc配置文件的方式web
須要導入jar包spring
寫個controller層的類(springmvc就是控制層框架)spring-mvc
public class HelloController implements Controller{ @Override public ModelAndView handleRequest(HttpServletRequest arg0, HttpServletResponse arg1) throws Exception { System.out.println("--hello--"); ModelAndView mv = new ModelAndView(); mv.setViewName("/hello.jsp"); return mv; } }
springmvc的配置文件session
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" 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.xsd"> <!-- 處理器映射器 將bean的name做爲url進行查找 , 須要在配置Handler時指定beanname(就是url) 全部的映射器都實現 HandlerMapping接口。 --> <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" /> <!-- 配置 Controller適配器 --> <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" /> <!-- --> <bean class="com.liy.controller.HelloController" name="/hello"/> </beans>
web.xml的配置mvc
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> <display-name>springMVC-01</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>ContextConfigLocation</param-name> <param-value>classpath:springmvc.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>springmvc</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
jsp頁面app
<body> <h1>hello-springMVC</h1> </body>
( 2 )註解的方式框架
只有控制層加了註解以及配置文件有不一樣
controller控制層
@Controller @RequestMapping("/hello") public class HelloController { @RequestMapping("/h1") public ModelAndView hello1(){ System.out.println("hello1"); ModelAndView mv = new ModelAndView(); mv.setViewName("/hello.jsp"); return mv; } @RequestMapping("/h2") public ModelAndView hello2(){ System.out.println("hello2"); ModelAndView mv = new ModelAndView(); mv.setViewName("/hello.jsp"); return mv; } }
xml配置文件
<?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:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd 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-4.3.xsd"> <!-- 開啓springmvc註解 --> <mvc:annotation-driven></mvc:annotation-driven> <!-- 開啓掃描 --> <context:component-scan base-package="com.liy.controller"></context:component-scan> </beans>
運行結果
springmvc接收參數
@Controller public class UserController { @RequestMapping("/add") @ResponseBody public void add(User user){ System.out.println(user); } @RequestMapping("/add1") @ResponseBody public void add1(int id,String name,String [] xq){ System.out.println(id+"-"+name); for (String string : xq) { System.out.println(string); } }
springmvc返回參數
@Controller //@SessionAttributes("msg") 以session的方式保存數據 public class MyController { @RequestMapping("/fun1") public ModelAndView fun1(){ ModelAndView mv = new ModelAndView(); mv.addObject("msg", "ModelAndView的msg"); mv.setViewName("index"); return mv; } @RequestMapping("/fun2") public String fun2(Map<String, Object> map) { map.put("msg", "map的msg"); return "index"; } @RequestMapping("/fun3") public String fun2(Model m) { m.addAttribute("msg", "model的msg"); return "index"; } @RequestMapping("/fun4") public String fun5(ModelMap mm){ mm.addAttribute("msg", "ModelMap的msg"); System.out.println(111); return "index"; } }
jsp頁面接收數據
<body> <!-- 直接用el表達式接收便可 默認是request域對象 --> <h1>${msg }</h1> </body>
springmvc轉換器(string轉換成時間) (接收的數據 用getParameter 接收的是string類型 getAttribute 接收是object類型)
轉換類
public class StringToDateConverter implements Converter<String,Date>{ @Override public Date convert(String arg0) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); try { return sdf.parse(arg0); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } return null; } }
而後在配置文件中配置
<!-- 配置一個轉換器 --> <bean id="formatConverter" class="org.springframework.format.support.FormattingConversionServiceFactoryBean"> <property name="converters"> <set> <bean class="com.liy.converter.StringToDateConverter" /> </set> </property> </bean> <!-- 開啓mvc註解 conversion-service="formatConverter" --> <mvc:annotation-driven conversion-service="formatConverter" ></mvc:annotation-driven>