SSM框架整合

SSM框架整合

一、环境要求

  • IDEA
  • MySQL 5.7.19
  • Tomcat 9
  • Maven 3.6

二、数据库环境

​ 创建数据库和相关表及约束

三、基本环境搭建

  1. 新建一Maven项目, 添加web的支持
  2. 导入相关的pom依赖
  3. 在pom文件设置Maven资源过滤
  4. 建立基本结构和配置框架

四、配置框架搭建

1.Java文件

  1. com.star.pojo 实体类
  2. com.star.dao 数据层
  3. com.star.service 服务层
  4. com.star.controller 控制层

2.resources

(1).Spring配置文件
1.applicationContext.xml
  1. 内容

    • 整合Spring配置文件,用于后面Web项目启动时调用
  2. 代码

    <?xml version="1.0" encoding="UTF8"?>
    <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">
        <import resource="classpath:spring-mvc.xml"/>
        <import resource="classpath:spring-service.xml"/>
        <import resource="classpath:spring-dao.xml"/>
    </beans>
    
2.spring-dao.xml
  1. 内容

    • 配置dao接口扫描包,动态实现dao接口到Spring容器的注册

    • 关联数据库配置文件

    • 数据库连接池

      ​ 1.dbcp:半自动化操作,不能自动连接

      ​ 2.c3p0:自动化操作,自动化加载配置文件,并且可以自动设置到对象中

      ​ 3.druid

      ​ 4.hikari

    • 配置sqlSessionFactory

  2. 代码

    <?xml version="1.0" encoding="UTF8"?>
    <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
            http://www.springframework.org/schema/context/spring-context.xsd">
        <!--关联数据库配置文件-->
        <context:property-placeholder location="classpath:database.properties"/>
    
        <!--数据库连接池
            dbcp:半自动化操作,不能自动连接
            c3p0:自动化操作,自动化加载配置文件,并且可以自动设置到对象中
            druid
            hikari
        -->
        <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
            <property name="driverClass" value="${jdbc.driver}"/>
            <property name="jdbcUrl" value="${jdbc.url}"/>
            <property name="user" value="${jdbc.username}"/>
            <property name="password" value="${jdbc.password}"/>
    
            <!--c3p0的私有属性-->
            <!--配置连接数-->
            <property name="maxPoolSize" value="30"/>
            <property name="minPoolSize" value="10"/>
            <!--关闭连接后不自动连接-->
            <property name="autoCommitOnClose" value="false"/>
            <!--获取连接超时时间-->
            <property name="checkoutTimeout" value="10000"/>
            <!--当前获取连接失败时间-->
            <property name="acquireRetryAttempts" value="2"/>
        </bean>
    
        <!--sqlSessionFactory-->
        <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
            <property name="dataSource" ref="dataSource"/>
            <property name="configLocation" value="classpath:mybatis-config.xml"/>
        </bean>
    
        <!--配置dao接口扫描包,动态实现dao接口到Spring容器的注册-->
        <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
            <!--注入sqlSessionFactory-->
            <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
            <!--要扫描的dao包-->
            <property name="basePackage" value="com.star.dao"/>
        </bean>
    </beans>
    
3.spring-service.xml
  1. 内容

    • 扫描service下的包,动态实现service接口到Spring容器的注册
    • 声明式事务配置
    • aop事务支持
  2. 代码

    <?xml version="1.0" encoding="UTF8"?>
    <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:aop="http://www.springframework.org/schema/aop"
           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/aop
           https://www.springframework.org/schema/aop/spring-aop.xsd
           http://www.springframework.org/schema/tx
           https://www.springframework.org/schema/tx/spring-tx.xsd">
        <!--扫描service下的包-->
        <context:component-scan base-package="com.star.service"/>
    
        <!--声明式事务配置-->
        <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <!--注入数据源-->
            <property name="dataSource" ref="dataSource"/>
        </bean>
    
        <!--aop事务支持-->
        <!--配置事务的通知类-->
        <tx:advice id="txAdvice">
            <tx:attributes>
                <tx:method name="*"/>
            </tx:attributes>
        </tx:advice>
        <!--配置事务切入-->
        <aop:config>
            <aop:pointcut id="txPointCut" expression="execution(* com.star.dao.*.*(..))"/>
            <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/>
        </aop:config>
    </beans>
    
4.spring-mvc.xml
  1. 内容

    • 扫描controller下的包,动态实现controller类到Spring容器的注册
    • 配置注解驱动
    • 静态资源过滤
    • 前端控制器,哪些静态资源不拦截
    • 视图过滤器
    • 配置拦截器
  2. 代码

    <?xml version="1.0" encoding="UTF8"?>
    <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
            http://www.springframework.org/schema/context/spring-context.xsd
            http://www.springframework.org/schema/mvc
            https://www.springframework.org/schema/mvc/spring-mvc.xsd">
        <!--配置注解驱动-->
        <mvc:annotation-driven/>
        <!--静态资源过滤-->
        <mvc:default-servlet-handler/>
        <!--前端控制器,哪些静态资源不拦截-->
        <mvc:resources location="/WEB-INF/css/" mapping="/css/**"/>
        <mvc:resources location="/WEB-INF/js/" mapping="/js/**"/>
        <mvc:resources location="/WEB-INF/fonts/" mapping="/fonts/**"/>
        <mvc:resources location="/WEB-INF/images/" mapping="/images/**"/>
        <mvc:resources location="/WEB-INF/jsp/" mapping="/jsp/**"/>
    
        <!--扫描包-->
        <context:component-scan base-package="com.star.controller"/>
    
        <!--视图过滤器-->
        <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="prefix" value="/WEB-INF/jsp/"/>
            <property name="suffix" value=".jsp"/>
        </bean>
        <!--配置拦截器-->
        <mvc:interceptors>
            <mvc:interceptor>
                <mvc:mapping path="/**"/>
                <bean id="loginInterceptor" class="com.star.interceptor.LoginInterceptor"/>
            </mvc:interceptor>
        </mvc:interceptors>
    </beans>
    
(2).数据库配置文件
1.mybatis-config.xml
  1. 内容

    • 扫描数据库接口所在包
    • 给实体类起别名
    • 设置日志
  2. 代码

    <?xml version="1.0" encoding="UTF8" ?>
    <!DOCTYPE configuration
            PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
            "http://mybatis.org/dtd/mybatis-3-config.dtd">
    <configuration>
        <!--设置日志-->
        <settings>
            <setting name="logImpl" value="STDOUT_LOGGING"/>
        </settings>
        <!--给实体类起别名-->
        <typeAliases>
            <!--扫描实体类所在包-->
            <package name="com.star.pojo"/>
        </typeAliases>
    
        <mappers>
            <!--
                1.扫描数据库所在包
                2.数据库接口文件和配置文件在同一包下,且同名
            -->
            <package name="com.star.dao"/>
        </mappers>
    </configuration>
    
2.database.properties
  1. 代码

    jdbc.driver=com.mysql.jdbc.Driver
    #MySQL8.0数据库serverTimezone=Asia/Shanghai
    jdbc.url=jdbc:mysql://localhost:3306/students?useSSL=true&useUnicode=true&characterEncoding=utf8
    jdbc.username=用户名
    jdbc.password=用户密码
    

3.web.xml

  1. 内容

    • DispatcherServlet
    • 乱码过滤
    • Session
  2. 代码

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
             version="4.0">
        <!--DispatcherServlet-->
        <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:applicationContext.xml</param-value>
            </init-param>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>springmvc</servlet-name>
            <url-pattern>/</url-pattern>
        </servlet-mapping>
    
        <!--乱码过滤-->
        <filter>
            <filter-name>encodingFilter</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>encodingFilter</filter-name>
            <url-pattern>/*</url-pattern>
        </filter-mapping>
    
        <!--Session-->
        <session-config>
            <!--设置Session存在时间-->
            <session-timeout>15</session-timeout>
        </session-config>
        
        <!--设置首页-->
        <welcome-file-list>
            <welcome-file>/WEB-INF/jsp/Admin_log.jsp</welcome-file>
        </welcome-file-list>
    </web-app>
    

五、业务实现

1.调用流程

2.实现流程

在这里插入图片描述

六、注意与报错

1.注意

[1]@ResponseBody

​ 绕过视图解析器

[2]Ajax
//通过get方式请求
$.get({
    url:"${pageContext.request.contextPath}/admin/toLogin",
    data: {"username":$("#username").val(),"pwd":$("#pwd").val()},
    success:function (data) {
        if (data==='pass'){
            //跳转请求
            window.location="${pageContext.request.contextPath}/admin/login"
        }else if (data==='uNameError'){
            alert("账号输入错误!")
            $("#username").val("")
            $("#pwd").val("")
        }else if (data==='pwdError'){
            alert("密码输入错误!")
            $("#pwd").val("")
        }
    }
})
[3] window.location
 //跳转请求
 window.location="${pageContext.request.contextPath}/admin/login"
[4]MessageFormat.format()
return MessageFormat.format("redirect:/student/allStudent?PageNo={0}", PageNo);

2.报错

(1)Property ‘sqlSessionFactory’ or ‘sqlSessionTemplate’ are required

  • 错误截图

在这里插入图片描述

  • 解决办法

    在实现Dao层映射时添加下面代码:

    @Autowired
    public void setSqlSessionFactory(SqlSessionFactory sqlSessionFactory){
        super.setSqlSessionFactory(sqlSessionFactory);
    }
    
  • 再次运行无报错

  • 再次纠错

    发现运行时Web配置文件写错

    在这里插入图片描述

    修改后
    在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值