ssm指是的 Spring Springmvc Mybatis 这三个框架都是 java 学习中必须征服的拦路虎, 然而, 这三个框架, 各自单独使用的话, 基本发挥不了作用, 所以, 只有把它们组合起来运用到项目中, 才能发挥它们的真正威力 下面是我的第一次整合成功的笔记 (又一个第一次没了)
我们要准备的 jar 包 (mvaen 项目)
- spring-webmvc 这个jar包在引入的时候会自动的引入 spring 相关的 jar 包,
2. javax.servlet-api 和 jsp-api 这两个jar包, tomcat自带的也有, 这里也把它用 maven 引入一下 3. mybatis 这就是 mybatis 的jar包 4. mybatis-spring 这个是mybatis 专为 spring的集成而开发的 jar 包 5. druid 这个是阿里的 druid 数据库连接池所用的jar 包 6. mysql-connector-java 这是mysql 的 jdbc的jar 包 7. spring-tx , spring-jdbc 这是辅助 框架完成 jdbc 数据库 事务处理的 jar 包 8. jackson-databind 这是springmvc默认的 json 数据格式的处理 jar 包, 引入它就可以了, maven 会自动下载它的其它两个依赖
maven pom.xml 文件中部分修改
因为maven 项目默认只编译 java 目录中的 .java 文件, 但是我们有可能会在 java目录中,添加一些 .xml 的文件, 所以我们修改一下 maven pom.xml 中的配置, 让它可以编译我们的 xml , properties的文件到 类路径下, 修改方法如下 在 pom.xml 文件的 <build>标签下 添加
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
项目的目录结构
我们首先把项目的目录结构建好, 因为后面的配置文件会用到这些结构 上面的文件名就可以知道其用处了
编写配置文件
配置文件是这块的重头戏, 我们先来整理一下要有哪几个配置文件 mybatis的配置 它的配置文件有两用, 一个是主配置文件, 一个是mapper 文件 spring的配置 它是要生成bean , 并把 mybatis druid 都创建到容器中的 springmvc的配置文件 这是 web 功能中路由部分不可缺少的 web.xml 配置文件, DispatcherServlet 就是它这里创建的 jdbc.properties 的配置文件, 它的做用是记录 jdbc的连接信息, 方便更改数据库信息
jdbc.properties
jdbc.Driver = com.mysql.cj.jdbc.Driver
jdbc.Url = jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf8&serverTimezone=UTC
jdbc.username = root;
jdbc.password = 123456
web.xml 文件
<?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">
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc.xml</parma-vlaue>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<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>
<init-param>
<param-name>forceRequestEncoding</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>forceResponseEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>charsetfilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
</web-app>
springmvc.xml springmvc的配置文件
我们在 web.xml中 指定的springmvc的配置文件的目录,和文件名
<?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">
<context:component-scan base-package="com.huang.controller"></context:component-scan>
<mvc:annotation-driven/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
spring.xml spring的配置文件
<?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"
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">
<context:property-placeholder location="classpath:jdbc.properties"/>
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
<property name="url" value="${jdbc.Url}"></property>
<property name="username" value="${jdbc.username}"></property>
<property name="password" value="${jdbc.password}"></property>
</bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<property name="configLocation" value="classpath:mybatis.xml"></property>
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
<property name="basePackage" value="com.huang.dao"></property>
</bean>
<context:component-scan base-package="com.huang.service"></context:component-scan>
</beans>
解释一下 为什么 property name=“sqlSessionFactoryBeanName” value=“sqlSessionFactory” 这里是一个引用对象, 却使用了一个value, 而没有使用 ref 我们可以看一下 sqlSessionFactoryBeanName的set 方法 , 它的参数就是一个字符串, 而不是一个引用类型的值
mybatis.xml mybatis的主配置文件
因为我们使用了数据库连接池, 所以mybatis的主配置文件不用再配置数据库的连接信息了
<?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>
<settings>
<setting name="logImpl" value="STDOUT_LOGGING"></setting>
</settings>
<mappers>
<package name="com.huang.dao"/>
</mappers>
</configuration>
mapper.xml mapper文件
mapper.xml文件和 dao接口文件是有很大关联关系的, 所以我们把 mapper和dao接口一起来对比 首先,它们要在同一目录下, 并且文件名是一样的
以上的配置文件中没有配置spring中的事务, 后面再说, 把上面的配置完成之后, 项目基本上就可以跑起来了
|