ssm框架整合,图文详解!!!

本文详细介绍了如何整合Spring、SpringMVC和Mybatis框架,包括配置pom.xml,创建必要的配置文件如spring_mvc.xml、druid.properties、spring_mybatis.xml、mybatis_config.xml,以及web.xml。同时,讲解了从实体类、DAO、Service到Controller的实现过程,并提到了使用mybatis generator自动生成代码,最后展示了goodsList.jsp页面的创建。
摘要由CSDN通过智能技术生成

ssm框架整合

  • 所需依赖pom.xml
    在本文最下面
  • 创建spring_mvc.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/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!-- 只解析controller -->
    <context:component-scan base-package="com.ljw" use-default-filters="false">
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

    <!--解析注解-->
    <mvc:annotation-driven></mvc:annotation-driven>
    <!--加载静态资源-->
    <mvc:default-servlet-handler></mvc:default-servlet-handler>
    <!--视图解析器-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
    <mvc:view-controller path="/" view-name="goodsList"></mvc:view-controller>

</beans>
  • 创建druid.properties文件
driver:com.mysql.cj.jdbc.Driver
url:jdbc:mysql://localhost:3306/shopping_system?characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&rewriteBatchedStatements=true
user:root
pwd:root
  • 创建spring_mybatis.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:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

    <!-- 解析除了controller -->
    <context:component-scan base-package="com.ljw">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

    <!-- 加载外部文件 -->
    <context:property-placeholder location="classpath:druid.properties"></context:property-placeholder>
    <!-- 获取链接池druid中的数据源 -->
    <bean class="com.alibaba.druid.pool.DruidDataSource" id="dataSource">
        <property name="driverClassName" value="${driver}"></property>
        <property name="username" value="${user}"></property>
        <property name="url" value="${url}"></property>
        <property name="password" value="${pwd}"></property>
    </bean>
    <!--开启事务管理器-->
    <bean class="org.springframework.jdbc.datasource.DataSourceTransactionManager" id="transactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    <!--注册事务管理器-->
    <tx:annotation-driven transaction-manager="transactionManager"></tx:annotation-driven>

    <!-- 与mybatis整合 -->
    <!-- 获取session工厂 -->
    <bean class="org.mybatis.spring.SqlSessionFactoryBean" id="sessionFactory">
        <!--需要数据源-->
        <property name="dataSource" ref="dataSource"></property>
        <!--需要mybatis配置文件-->
        <property name="configLocation" value="classpath:mybatis_config.xml"></property>
        <!-- 映射文件 -->
        <property name="mapperLocations" value="classpath:com/ljw/mapper/*.xml"></property>
    </bean>


    <!--获取session-->
    <bean class="org.mybatis.spring.SqlSessionTemplate" id="sessionTemplate"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值