SpringMVC配置文件案例

来源:互联网 发布:淘宝客服月总结报告 编辑:程序博客网 时间:2024/06/05 22:59

Web.xml

<?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_2_5.xsd" id="WebApp_ID" version="2.5">  <display-name>ssm0523</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>    <!-- 加载spring容器 --><context-param><param-name>contextConfigLocation</param-name><param-value>classpath:ApplicationContext-*.xml</param-value></context-param><listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener>      <!-- springmvc前端控制器 -->  <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>  <!-- 在tomcat启动的时候就加载这个servlet -->  <load-on-startup>1</load-on-startup>  </servlet>  <servlet-mapping>  <servlet-name>springMvc</servlet-name>  <!--   *.action    代表拦截后缀名为.action结尾的  / 拦截所有但是不包括.jsp  /* 拦截所有包括.jsp   -->  <url-pattern>/</url-pattern>  </servlet-mapping>    <!-- 配置Post请求乱码 -->  <filter><filter-name>CharacterEncodingFilter</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><init-param><param-name>encoding</param-name><param-value>utf-8</param-value></init-param></filter><filter-mapping><filter-name>CharacterEncodingFilter</filter-name><url-pattern>/*</url-pattern></filter-mapping>  </web-app>
SpringMvc.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:p="http://www.springframework.org/schema/p"xmlns:context="http://www.springframework.org/schema/context"xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd        http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">        <!-- @Controller注解扫描 -->    <context:component-scan base-package="cn.itheima.controller"></context:component-scan>        <!-- 注解驱动:    替我们显示的配置了最新版的注解的处理器映射器和处理器适配器    conversion-service:用于格式转换     -->    <mvc:annotation-driven conversion-service="conversionService"></mvc:annotation-driven>        <!-- 配置视图解析器 作用:在controller中指定页面路径的时候就不用写页面的完整路径名称了,可以直接写页面去掉扩展名的名称--><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="conversionService"class="org.springframework.format.support.FormattingConversionServiceFactoryBean"><property name="converters"><set><!-- 指定自定义转换器的全路径名称 --><bean class="cn.itheima.controller.converter.CustomGlobalStrToDateConverter"/></set></property></bean><!-- 配置全局异常处理器 --><bean class="cn.itheima.exception.CustomGlobalExceptionResolver"></bean><!-- 文件上传  页面需配置 from提交为二进制方式 Controller里用MultipartFile接收--><bean id="multipartResolver"class="org.springframework.web.multipart.commons.CommonsMultipartResolver"><!-- 设置上传文件的最大尺寸为5MB --><property name="maxUploadSize"><value>5242880</value></property></bean><!-- 配置拦截器 --><mvc:interceptors><!-- 多个拦截器的执行顺序等于springMvc.xml中的配置顺序 --><!-- <mvc:interceptor> --><!-- 拦截请求的路径    要拦截所有必需配置成/** --><!-- <mvc:mapping path="/**"/> --><!-- 指定拦截器的位置 --><!-- <bean class="cn.itheima.interceptor.Interceptor1"></bean> --><!-- </mvc:interceptor> --><!-- <mvc:interceptor> --><!-- 拦截请求的路径    要拦截所有必需配置成/** --><!-- <mvc:mapping path="/**"/> --><!-- 指定拦截器的位置 --><!-- <bean class="cn.itheima.interceptor.Interceptor2"></bean> --><!-- </mvc:interceptor> --><mvc:interceptor><!-- 拦截请求的路径    要拦截所有必需配置成/** --><mvc:mapping path="/**"/><!-- 指定拦截器的位置 --><bean class="cn.itheima.interceptor.LoginInterceptor"></bean></mvc:interceptor></mvc:interceptors></beans>
案例Controller:
package cn.controller;import java.io.File;import java.util.List;import java.util.UUID;import javax.servlet.http.HttpServletRequest;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.PathVariable;import org.springframework.web.bind.annotation.RequestBody;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody;import org.springframework.web.multipart.MultipartFile;import org.springframework.web.servlet.ModelAndView;import cn.itheima.exception.CustomException;import cn.itheima.pojo.Items;import cn.itheima.service.ItemsService;import cn.itheima.vo.QueryVo;@Controller//窄化请求映射:为防止你和你的队友在conroller方法起名的时候重名,所以相当于在url中多加了一层目录,防止重名//例如:当前list的访问路径   localhost:8081/ssm0523-1/items/list.action@RequestMapping("/items")public class ItemsController {@Autowiredprivate ItemsService itmesService;//@RequestMapping(value="/list", method=RequestMethod.GET)@RequestMapping("/list")public ModelAndView itemsList() throws Exception{//测试运行时异常//int i= 0/0;//测试自定义异常//if(true){//CustomException customException = new CustomException();//customException.setMessage("对不起哦, 您已经抢购过, 不要太贪心哦!");//throw customException;//}List<Items> list = itmesService.list();ModelAndView modelAndView = new ModelAndView();modelAndView.addObject("itemList", list);modelAndView.setViewName("itemList");return modelAndView;}/** * springMvc中默认支持的参数类型:也就是说在controller方法中可以加入这些也可以不加,  加不加看自己需不需要,都行. *HttpServletRequest *HttpServletResponse *HttpSession *Model * *通过@PathVariable可以接收url中传入的参数 *@RequestMapping("/itemEdit/{id}")中接收参数使用大括号中加上变量名称, @PathVariable中的变量名称要和RequestMapping *中的变量名称相同 */@RequestMapping("/itemEdit/{id}")public String itemEdit(@PathVariable("id") Integer id, HttpServletRequest reuqest,  Model model) throws Exception{//String idStr = reuqest.getParameter("id");Items items = itmesService.findItemsById(id);//Model模型:模型中放入了返回给页面的数据//model底层其实就是用的request域来传递数据,但是对request域进行了扩展.model.addAttribute("item", items);//如果springMvc方法返回一个简单的string字符串,那么springMvc就会认为这个字符串就是页面的名称return "editItem";}//springMvc可以直接接收基本数据类型,包括string.spirngMvc可以帮你自动进行类型转换.//controller方法接收的参数的变量名称必须要等于页面上input框的name属性值//spirngMvc可以直接接收pojo类型:要求页面上input框的name属性名称必须等于pojo的属性名称@RequestMapping("/updateitem")//public String update(Integer id, String name, Float price, String detail) throws Exception{public String update(MultipartFile pictureFile,Items items, Model model, HttpServletRequest request) throws Exception{//1. 获取图片完整名称String fileStr = pictureFile.getOriginalFilename();//2. 使用随机生成的字符串+源图片扩展名组成新的图片名称,防止图片重名String newfileName = UUID.randomUUID().toString() + fileStr.substring(fileStr.lastIndexOf("."));//3. 将图片保存到硬盘pictureFile.transferTo(new File("E:\\image\\" + newfileName));//4.将图片名称保存到数据库items.setPic(newfileName);itmesService.updateItems(items);//返回数据//request.setAttribute("", arg1);//指定返回的页面(如果controller方法返回值为void,则不走springMvc组件,所以要写页面的完整路径名称)//request.getRequestDispatcher("/WEB-INF/jsp/success.jsp").forward(request, response);//重定向:浏览器中url发生改变,request域中的数据不可以带到重定向后的方法中//model.addAttribute("id", items.getId());//在springMvc中凡是以redirect:字符串开头的都为重定向return "redirect:itemEdit/"+items.getId();//请求转发:浏览器中url不发生改变,request域中的数据可以带到转发后的方法中//model.addAttribute("id", items.getId());//spirngMvc中请求转发:返回的字符串以forward:开头的都是请求转发, //后面forward:itemEdit.action表示相对路径,相对路径就是相对于当前目录,当前为类上面指定的items目录.在当前目录下可以使用相对路径随意跳转到某个方法中//后面forward:/itemEdit.action路径中以斜杠开头的为绝对路径,绝对路径从项目名后面开始算//return "forward:/items/itemEdit.action";}//如果Controller中接收的是Vo,那么页面上input框的name属性值要等于vo的属性.属性.属性.....@RequestMapping("/search")public String search(QueryVo vo) throws Exception{System.out.println(vo);return "";}@RequestMapping("/delAll")public String delAll(QueryVo vo) throws Exception{//如果批量删除,一堆input复选框,那么可以提交数组.(只有input复选框被选中的时候才能提交)System.out.println(vo);return "";}@RequestMapping("/updateAll")public String updateAll(QueryVo vo) throws Exception{System.out.println(vo);return "";}//导入jackson的jar包在 controller的方法中可以使用@RequestBody,让spirngMvc将json格式字符串自动转换成java中的pojo//页面json的key要等于java中pojo的属性名称//controller方法返回pojo类型的对象并且用@ResponseBody注解,springMvc会自动将pojo对象转换成json格式字符串@RequestMapping("/sendJson")@ResponseBodypublic Items json(@RequestBody Items items) throws Exception{System.out.println(items);return items;}}



原创粉丝点击