ssm整合

aplicationContext.xml

    <!-- spring 整合,配置mybatis -->
    <bean id="sqlSessionFactory" class=" org.mybatis.spring.SqlSessionFactoryBean">
    <!--dataSource属性指定要用到的连接池-->
    <property name="dataSource" ref="dataSource"></property>
    <!-- 所有配置的mapper文件,mapperLocations不能变 -->
    <property name="mapperLocations" value="classpath*:com/hw/mapper/*Mapper.xml"></property>
    </bean>
    
    <!-- 配置bean   自动扫描所有mapper   自动给Mapper接口产生代理类对象    并且给代理对象注入SqlSessionFactory-->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
     <property name="basePackage" value="com.hw.dao"></property>
     <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
    </bean>

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:aop="http://www.springframework.org/schema/aop"
    xmlns:context="http://www.springframework.org/schema/context" 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-3.1.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
    <!-- 配置扫描 -->
    <context:component-scan base-package="com.hw" />
    <!-- mvc:annotation-driven:使用mvc注解,解决406同时解决时间问题 -->
    <mvc:annotation-driven>
        <!-- 处理responseBody 里面日期类型 -->
        <mvc:message-converters>
            <bean
                class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter">
                <property name="objectMapper">
                    <bean class="com.fasterxml.jackson.databind.ObjectMapper">
                        <property name="dateFormat">
                            <bean class="java.text.SimpleDateFormat">
                                <constructor-arg type="java.lang.String" value="yyyy-MM-dd HH:mm:ss" />
                            </bean>
                        </property>
                    </bean>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>
    <!-- 配置视图解析器 -->
    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!-- 前缀 -->
        <property name="prefix" value="/WEB-INF/per/"></property>
        <!-- 后缀 -->
        <property name="suffix" value=".jsp"></property>
    </bean>
    <!-- 配置spring mvc上传图片大小,multipartResolver名不能改 -->
    <bean id="multipartResolver"
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
    <property name="maxUploadSize" value="104857600"></property>
    </bean>
</beans>

mybiatis-config.xml

<?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>
    <!-- 配置mysql数据库的连接环境 -->
    <environments default="mybatis"><!-- 默认名可以任意,但要和其下的id一致 -->
        <environment id="mybatis">
            <!-- JDBC - 这个类型直接全部使用 JDBC 的提交和回滚功能。它依靠使用连接的数据源来管理事务的作用域。 MANAGED - 这个类型什么不做 
                , 它从不提交 、 回滚和关闭连接 。 而是让窗口来管理事务的全部生命周期 。(比如说 Spring 或者 JAVAEE 服务器) -->
            <transactionManager type="JDBC"></transactionManager><!-- 
                一般用JDBC -->
            <dataSource type="POOLED"><!-- 一般用POOLED -->
                <!-- 据源类型有三种: UNPOOLED , POOLED , JNDI 。 UNPOOLED - 这个数据源实现只是在每次请求的时候简单的打开和关闭一个连接。虽然这有点慢,但作为一些不需要性能和立即响应的简单应用来说 
                    , 不失为一种好选择 。 POOLED - 这个数据源缓存 JDBC 连接对象用于避免每次都要连接和生成连接实例而需要的验证时间 。对于并发 WEB 
                    应用,这种方式非常流行因为它有最快的响应时间。 JNDI - 这个数据源实现是为了准备和 Spring 或应用服务一起使用,可以在外部也可以在内部配置这个数据源,然后在 
                    JNDI 上下文中引用它。这个数据源配置只需要两上属性: -->
                <property name="driver" value="com.mysql.jdbc.Driver" />
                <property name="url"
                    value="jdbc:mysql://localhost:3306/qq?characterEncoding=utf-8" />
                <property name="username" value="root" />
                <property name="password" value="root" />
            </dataSource>
        </environment>
    </environments>
    <!-- 配置映射文件 -->
    <mappers>
        <mapper resource="com/hw/mapper/UserDaoMapper.xml"/>
        <mapper resource="com/hw/mapper/DeptDaoMapper.xml"/>
        <mapper resource="com/hw/mapper/PersonDaoMapper.xml"/>
    </mappers>
</configuration>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    <!-- 配置spring -->
    <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!-- 如果applicationContext.xml不在web-info下则要配置 -->
    <context-param>
    <param-name>contextConfigLocation</param-name><!--contextConfigLocation名不能改 -->
    <param-value>classpath:config/applicationContext.xml</param-value>
    </context-param>
    <!-- 配置spring mvc -->
    <servlet>
        <servlet-name>springmvc</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <!-- 如果qq-servlet.xml放在web-info文件夹下则不用配置,contextConfigLocation名不能改 -->
        <init-param>
        <param-name>contextConfigLocation</param-name> 
        <param-value>classpath:config/qq-servlet.xml</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>springmvc</servlet-name>
        <url-pattern>*.do</url-pattern><!-- 是spring mvc开发习惯要.do结尾,struts要用.action -->
    </servlet-mapping>
    <!-- spring mvc处理乱码 -->
    <filter>
    <filter-name>bm</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <!-- 设置编码参数 -->
    <init-param>
    <param-name>encoding</param-name><!--encoding不能变  -->
    <param-value>utf-8</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>bm</filter-name>
    <url-pattern>/*</url-pattern>
    </filter-mapping>
    <display-name></display-name>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

mapper.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!--namespace命名空间如果和spring整合时要用接口全类名 -->
<mapper namespace="com.hw.dao.UserDao">
    <resultMap type="com.hw.entity.User" id="userinfo">
        <result column="id" property="id"/>
        <result column="uname" property="uname"/><!--column和property不能省  -->
        <result column="pwd" property="pwd"/>
        
    </resultMap>
    <insert id="saveUser"   parameterType="com.hw.entity.User"><!-- parameterType参数类型 -->
        insert into tab_user values(null,#{uname},#{pwd},#{js});
    </insert>
    
    <delete id="delUser" parameterType="int"><!-- 删除单个 -->
        delete from tab_user where id=#{id}
    </delete>
    
    <delete id="delAllUser" parameterType="string"><!--删除多个 -->
        delete from tab_user where id in
        <foreach collection="array" item="id" open="(" close=")"
            separator=",">
            #{id}
        </foreach>
    </delete>
    
    <update id="updateUser" parameterType="com.hw.entity.User">
        update tab_user
        <set>
            <choose>
                <when test="uname!=null">
                    uname=#{uname}
                </when>
                <when test="pwd!=null">
                    pwd=#{pwd}
                </when>
                <when test="js!=null">
                    js=#{js}
                </when>
            </choose>
        </set>
        where id=#{id}
    </update>
    
    <select id="list"  resultMap="userinfo">
    <!-- resultType="com.hw.entity.User"返回结果类型,也可以用 resultMap="userinfo" -->
        select * from tab_user
    </select>
    
    <select id="getUser" resultType="com.hw.entity.User"
        parameterType="int">
        select * from tab_user where id=#{id}
    </select>
    
    <select id="getCountUser" resultType="int">
        select count(id) from
        tab_user
    </select>
    
    <select id="ListPage" resultMap="userinfo"
        parameterType="map">
        <!-- 如果开发模糊查询时用#则调用 时需要:map.put("uname", "%张%");map.put("js", "%管理员%"); 
            select * from tab_user where uname like #{uname} and js like #{js} limit 
            #{start},#{end} -->
        select * from tab_user where 1=1
        <if test="uname!=null">
            and uname like '%${uname}%'
        </if>
        <if test="js!=null">
            and js like '%${js}%'
        </if>
        order by id desc limit #{start},#{end}
    </select>
    
    <select id="getCountListUser" parameterType="map" resultType="int">
        select count(id) from tab_user where 1=1
        <if test="uname!=null">
            and uname like '%${uname}%'
        </if>
        <if test="js!=null">
            and js like '%${js}%'
        </if>
    </select>

</mapper>
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容