• SSM整合


    springmvc与struts2不同

    1、springmvc的入口是一个servlet即前端控制器,而struts2入口是一个filter过滤器。
    2、springmvc是基于方法开发(一个url对应一个方法),请求参数传递到方法的形参,可以设计为单例或多例(建议单例),struts2是基于类开发,传递参数是通过类的属性,只能设计为多例。
    3、Struts采用值栈存储请求和响应的数据,通过OGNL存取数据, springmvc通过参数解析器是将request请求内容解析,并给方法形参赋值,将数据和视图封装成ModelAndView对象,最后又将ModelAndView中的模型数据通过request域传输到页面。Jsp视图解析器默认使用jstl。

    整合思路

    Dao层:
        1、SqlMapConfig.xml,空文件即可,但是需要文件头。
        2、applicationContext-dao.xml
            a)数据库连接池
            b)SqlSessionFactory对象,需要spring和mybatis整合包下的。
            c)配置mapper文件扫描器。

    Service层:
        1、applicationContext-service.xml包扫描器,扫描@service注解的类。
        2、applicationContext-trans.xml配置事务。

    Controller层:
        1、Springmvc.xml
            a)包扫描器,扫描@Controller注解的类。
            b)配置注解驱动
            c)配置视图解析器

    Web.xml文件:
        1、配置spring
        2、配置前端控制器。

    整合SSM

    1.jar包
        a.spring(包括springmvc)
        b.mybatis
        c.mybatis-spring整合包
        d.数据库驱动
        e.第三方连接池。

    2.配置mybatis的配置文件sqlMapConfig.xml
    使用逆向工程来生成Mapper相关代码,不需要配置别名。
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
        <configuration>
    
        </configuration>
    3.配置spring的dao层配置文件 applicationContext-dao.xml
    配置数据源、配置SqlSessionFactory、mapper扫描器。
        <?xml version="1.0" encoding="UTF-8"?>
        <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
        xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
        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-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
    
        <!-- 加载配置文件 -->
        <context:property-placeholder location="classpath:db.properties" />
    
        <!-- 数据库连接池 -->
        <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
            destroy-method="close">
            <property name="driverClassName" value="${jdbc.driver}" />
            <property name="url" value="${jdbc.url}" />
            <property name="username" value="${jdbc.username}" />
            <property name="password" value="${jdbc.password}" />
            <property name="maxActive" value="10" />
            <property name="maxIdle" value="5" />
        </bean>
    
        <!-- 配置SqlSessionFactory -->
        <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
            <!-- 数据库连接池 -->
            <property name="dataSource" ref="dataSource" />
            <!-- 加载mybatis的全局配置文件 -->
            <property name="configLocation" value="classpath:mybatis/SqlMapConfig.xml" />
        </bean>
    
        <!-- 配置Mapper扫描 -->
        <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <!-- 配置Mapper扫描包 -->
            <property name="basePackage" value="cn.itcast.ssm.mapper" />
        </bean>
    
        </beans>
    4.配置数据源 db.properties
    配置数据库相关信息
        jdbc.driver=com.mysql.jdbc.Driver
        jdbc.url=jdbc:mysql://localhost:3306/springmvc?characterEncoding=utf-8
        jdbc.username=root
        jdbc.password=root
    5.配置spring配置的service层 applicationContext-service.xml
        <?xml version="1.0" encoding="UTF-8"?>
        <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
        xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
        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-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
    
        <!-- 配置service扫描 -->
        <context:component-scan base-package="cn.itcast.ssm.service" />
    
        </beans>
    6.由spring配置事务管理 applicationContext-trans.xml(建议还是使用注解方式)
        <?xml version="1.0" encoding="UTF-8"?>
        <beans xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p"
        xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
        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-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd">
    
        <!-- 事务管理器 -->
        <bean id="transactionManager"
            class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <!-- 数据源 -->
            <property name="dataSource" ref="dataSource" />
        </bean>
    
        <!-- 通知 -->
        <tx:advice id="txAdvice" transaction-manager="transactionManager">
            <tx:attributes>
                <!-- 传播行为 -->
                <tx:method name="save*" propagation="REQUIRED" />
                <tx:method name="insert*" propagation="REQUIRED" />
                <tx:method name="delete*" propagation="REQUIRED" />
                <tx:method name="update*" propagation="REQUIRED" />
                <tx:method name="find*" propagation="SUPPORTS" read-only="true" />
                <tx:method name="get*" propagation="SUPPORTS" read-only="true" />
                <tx:method name="query*" propagation="SUPPORTS" read-only="true" />
            </tx:attributes>
        </tx:advice>
    
        <!-- 切面 -->
        <aop:config>
            <aop:advisor advice-ref="txAdvice"
                pointcut="execution(* cn.itcast.ssm.service.*.*(..))" />
        </aop:config>
    
        </beans>
    
    7.配置springmvc的配置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: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://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
    
        <!-- 配置controller扫描包 -->
        <context:component-scan base-package="cn.itcast.ssm.controller" />
    
        <!-- 注解驱动 -->
        <mvc:annotation-driven />
    
        <!-- Example: prefix="/WEB-INF/jsp/", suffix=".jsp", viewname="test" ->
            "/WEB-INF/jsp/test.jsp" -->
        <!-- 配置视图解析器 -->
        <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <!-- 配置逻辑视图的前缀 -->
            <property name="prefix" value="/WEB-INF/jsp/" />
            <!-- 配置逻辑视图的后缀 -->
            <property name="suffix" value=".jsp" />
        </bean>
    
        </beans>
    8.配置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>springmvc-web</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:spring/applicationContext*.xml</param-value>
        </context-param>
    
        <!-- 使用监听器加载Spring配置文件 -->
        <listener>
            <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
        </listener>
    
        <!-- 配置SrpingMVC的前端控制器 -->
        <servlet>
            <servlet-name>springmvc-web</servlet-name>
            <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
            <init-param>
                <param-name>contextConfigLocation</param-name>
                <param-value>classpath:spring/springmvc.xml</param-value>
            </init-param>
        </servlet>
    
        <servlet-mapping>
            <servlet-name>springmvc-web</servlet-name>
            <!-- 配置所有以action结尾的请求进入SpringMVC -->
            <url-pattern>*.action</url-pattern>
        </servlet-mapping>
    
        </web-app>



    使用SSM

    页面点击修改按钮,发起请求
    http://127.0.0.1:8080/springmvc-web/itemEdit.action?id=1

    需要从请求的参数中把请求的id取出来。
    Id包含在Request对象中。可以从Request对象中取id。

    想获得Request对象只需要在Controller方法的形参中添加一个参数即可。Springmvc框架会自动把Request对象传递给方法。

    代码实现
    /**
     * 根据id查询商品
     *
     * @param request
     * @return
     */
    @RequestMapping("/itemEdit")
    public ModelAndView queryItemById(HttpServletRequest request) {
        // 从request中获取请求参数
        String strId = request.getParameter("id");
        Integer id = Integer.valueOf(strId);
    
        // 根据id查询商品数据
        Item item = this.itemService.queryItemById(id);
    
        // 把结果传递给页面
        ModelAndView modelAndView = new ModelAndView();
        // 把商品数据放在模型中
        modelAndView.addObject("item", item);
        // 设置逻辑视图
        modelAndView.setViewName("itemEdit");
    
        return modelAndView;
    }

    方法形参默认支持的参数类型

    处理器形参中添加如下类型的参数处理适配器会默认识别并进行赋值。
    HttpServletRequest
        通过request对象获取请求信息

    HttpServletResponse
        通过response处理响应信息

    HttpSession
        通过session对象得到session中存放的对象

    Model/ModelMap
    Model
        除了ModelAndView以外,还可以使用Model来向页面传递数据,Model是一个接口,在参数里直接声明model即可
        如果使用Model则可以不使用ModelAndView对象,Model对象可以向页面传递数据,View对象则可以使用String返回值替代。
        不管是Model还是ModelAndView,其本质都是使用Request对象向jsp传递数据。
    代码:
    @RequestMapping("/itemEdit")
    public String queryItemById(HttpServletRequest request, Model model) {
        // 从request中获取请求参数
        String strId = request.getParameter("id");
        Integer id = Integer.valueOf(strId);
    
        // 根据id查询商品数据
        Item item = this.itemService.queryItemById(id);
    
        // 把商品数据放在模型中
        model.addAttribute("item", item);
    
        return "itemEdit";
    }
    ModelMap
    ModelMap是Model接口的实现类,也可以通过ModelMap向页面传递数据
    使用Model和ModelMap的效果一样,如果直接使用Model,springmvc会实例化ModelMap

    方法形参绑定简单类型

    当请求的参数名称和处理器形参名称一致时会将请求参数与形参进行绑定。
    这样,从Request取参数的方法就可以进一步简化。
    @RequestMapping("/itemEdit")
    public String queryItemById(int id, ModelMap model) {
        // 根据id查询商品数据
        Item item = this.itemService.queryItemById(id);
    
        // 把商品数据放在模型中
        model.addAttribute("item", item);
    
        return "itemEdit";
    }
    参数类型推荐使用包装数据类型,因为基础数据类型不可以为null
        整形:Integer、int
        字符串:String
        单精度:Float、float
        双精度:Double、double
        布尔型:Boolean、boolean
            说明:对于布尔类型的参数,请求的参数值为true或false。或者1或0

    处理器方法:
    public String editItem(Model model,Integer id,Boolean status) 
    @RequestParam
    使用@RequestParam常用于处理简单类型的绑定。

    value:参数名字,即入参的请求参数名字,如value=“itemId”表示请求的参数       区中的名字为itemId的参数的值将传入

    required:是否必须,默认是true,表示请求中一定要有相应的参数,否则将报错
    TTP Status 400 - Required Integer parameter 'XXXX' is not present

    defaultValue:默认值,表示如果请求中没有同名参数时的默认值

    代码如下:
        @RequestMapping("/itemEdit")
        public String queryItemById(@RequestParam(value = "itemId", required = true, defaultValue = "1") Integer id,
            ModelMap modelMap) {
        // 根据id查询商品数据
        Item item = this.itemService.queryItemById(id);
    
        // 把商品数据放在模型中
        modelMap.addAttribute("item", item);
    
        return "itemEdit";
        }
    包装类型绑定:
        public class QueryVo {
            private Item item;
                set/get。。。
        }
        前端 name属性值为 name=item.name

    自定义参数绑定:
    需求
    在商品修改页面可以修改商品的生产日期,并且根据业务需求自定义日期格式。
    需求分析
    由于日期数据有很多种格式,springmvc没办法把字符串转换成日期类型。所以需要自定义参数绑定。

    前端控制器接收到请求后,找到注解形式的处理器适配器,对RequestMapping标记的方法进行适配,并对方法中的形参进行参数绑定。可以在springmvc处理器适配器上自定义转换器Converter进行参数绑定。

    一般使用<mvc:annotation-driven/>注解驱动加载处理器适配器,可以在此标签上进行配置。

    修改jsp页面
    如下图修改itemEdit.jsp页面,显示时间
    ![自定义参数绑定.png][1]
    自定义Converter
    public class DateConverter implements Converter<String, Date> {
    
        @Override
        public Date convert(String source) {
            try {
                // 把字符串转换为日期类型
                SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyy-MM-dd HH:mm:ss");
                Date date = simpleDateFormat.parse(source);
    
                return date;
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            // 如果转换异常则返回空
            return null;
        }
    }


    配置Converter
        <!-- 配置注解驱动 -->
        <!-- 如果配置此标签,可以不用配置... -->
        <mvc:annotation-driven conversion-service="conversionService" />
    
        <!-- 转换器配置 -->
        <bean id="conversionService"     class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
        <property name="converters">
            <set>
                <bean class="cn.itcast.springmvc.converter.DateConverter" />
            </set>
        </property>
        </bean>
    配置方式2(了解)
        <!--注解适配器 -->
        <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
        <property name="webBindingInitializer" ref="customBinder"></property>
        </bean>
    
        <!-- 自定义webBinder -->
        <bean id="customBinder" class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
        <property name="conversionService" ref="conversionService" />
        </bean>
    
        <!-- 转换器配置 -->
        <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
        <property name="converters">
            <set>
                <bean class="cn.itcast.springmvc.convert.DateConverter" />
            </set>
        </property>
        </bean>
    注意:此方法需要独立配置处理器映射器、适配器,
    不再使用
    <mvc:annotation-driven/>

    解决Post和Get乱码问题

    ISO8859-1是tomcat默认编码,需要将tomcat编码后的内容按utf-8编码
    提交发现,保存成功,但是保存的是乱码
    在web.xml中加入:
        <!-- 解决post乱码问题 -->
        <filter>
            <filter-name>encoding</filter-name>
            <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
            <!-- 设置编码参是UTF8 -->
            <init-param>
                <param-name>encoding</param-name>
                <param-value>UTF-8</param-value>
            </init-param>
        </filter>
        <filter-mapping>
            <filter-name>encoding</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>
    对于get请求中文参数出现乱码解决方法有两个:
    修改tomcat配置文件添加编码与工程编码一致,如下:
    <Connector URIEncoding="utf-8" connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
    另外一种方法对参数进行重新编码:
    String userName = new String(request.getParamter("userName").getBytes("ISO8859-1"),"utf-8")
    ISO8859-1是tomcat默认编码,需要将tomcat编码后的内容按utf-8编码

  • 相关阅读:
    cbitmap 获取RGB
    存稿
    VC单选按钮控件(Radio Button)用法(转)
    MFC文档视图中窗口切换 (2012-05-11 18:32:48)
    MFC 结束线程
    vs2010调试运行时弹出对话框:系统找不到指定文件
    fatal error C1189: #error : This file requires _WIN32_WINNT to be #defined at least to 0x0403. Value 0x0501 or higher is recommended.
    自定义消息
    数据分析与可视化--matplotlib
    数据分析与可视化--pandas
  • 原文地址:https://www.cnblogs.com/sybk/p/10004721.html
Copyright © 2020-2023  润新知