当前位置:   article > 正文

不需要maven的SSM框架整合

不需要maven的SSM框架整合

第一步必不可少,添加相关的jar包

 

 

下载地址:SSM-jar地址

(下载需要拷贝地址到浏览器窗口,写了一上午挺累的,愿意的客官赏两个积分,网上也有很多也可以自己照着图上的下载对应的版本)

 

 

后面所提到的整个的文件目录(部分springmvc

第二步:当然就连接数据库,所以我们先配置mybatis以及mybatis和spring的整合

 

1)创建一个源文件sources,然后再改文件下创建一个名为mybatis-config.xml,代码如下

 

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE configuration
  3. PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-config.dtd">
  5. <configuration>
  6. <!-- 配置全局属性 -->
  7. <settings>
  8. <!-- 使用jdbc的getGeneratedKeys获取数据库自增主键 -->
  9. <setting name="useGeneratedKeys" value="true"/>
  10. <!-- 使用列别名替换列名 默认true
  11. select name as title from table
  12. -->
  13. <setting name="useColumnLabel" value="true"/>
  14. <!-- 开启驼峰命名转化 table(create_time) -> entity(createTime)-->
  15. <setting name="mapUnderscoreToCamelCase" value="true"/>
  16. </settings>
  17. </configuration>

 

2)接下来需要配置spring-dao层的整合,但是在这之前我们需要准备数据库,以及我们的连接参数的属性文件。

 

2.1这里只是为了演示我就创建一个简单的表,只包含用户名,密码,年龄(使用MySQL数据库中springmvc数据库以及user表)

  1. mysql> create database springmvc;
  2. Query OK, 1 row affected (0.00 sec)
  3. mysql> use springmvc
  4. Database changed
  5. mysql> CREATE TABLE user(
  6. -> id SMALLINT UNSIGNED PRIMARY KEY AUTO_INCREMENT,
  7. -> user_name VARCHAR(20) NOT NULL,
  8. -> password VARCHAR(15) NOT NULL,
  9. -> age TINYINT);

2.2接下来我们就需要一个属性文件用来保存我们的数据库连接驱动名以及用户名等参数,在resources目录下创建一个resource.properties文件(以键值对保存参数的文件),内容如下:

jdbc.name=你的数据库用户名
jdbc.driverclass=com.mysql.jdbc.Driver
jdbc.pwd=你的数据库密码
jdbc.url=jdbc\:mysql\://localhost\:3306/springmvc?useUnicode\=true&characterEncoding\=utf8

2.3接下来我们就在resources/spring/下创建一个spring-dao.xml来整合mybatis和spring

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans
  3. xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xmlns:aop="http://www.springframework.org/schema/aop"
  7. xmlns:tx="http://www.springframework.org/schema/tx"
  8. xmlns:p="http://www.springframework.org/schema/p"
  9. xmlns:util="http://www.springframework.org/schema/util"
  10. xmlns:jdbc="http://www.springframework.org/schema/jdbc"
  11. xmlns:cache="http://www.springframework.org/schema/cache"
  12. xsi:schemaLocation="
  13. http://www.springframework.org/schema/context
  14. http://www.springframework.org/schema/context/spring-context.xsd
  15. http://www.springframework.org/schema/beans
  16. http://www.springframework.org/schema/beans/spring-beans.xsd
  17. http://www.springframework.org/schema/tx
  18. http://www.springframework.org/schema/tx/spring-tx.xsd
  19. http://www.springframework.org/schema/jdbc
  20. http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd
  21. http://www.springframework.org/schema/cache
  22. http://www.springframework.org/schema/cache/spring-cache-3.1.xsd
  23. http://www.springframework.org/schema/aop
  24. http://www.springframework.org/schema/aop/spring-aop.xsd
  25. http://www.springframework.org/schema/util
  26. http://www.springframework.org/schema/util/spring-util.xsd">
  27. <!-- 配置整合mybatis过程 -->
  28. <!-- 1配置数据库参数,引入刚才写的属性文件 -->
  29. <context:property-placeholder location="classpath:resource.properties"/>
  30. <!-- 2 数据库连接池 (c3p0)-->
  31. <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
  32. <property name="driverClass" value="${jdbc.driverclass}"></property>
  33. <property name="jdbcUrl" value="${jdbc.url}"></property>
  34. <property name="user" value="${jdbc.name}"></property>
  35. <property name="password" value="${jdbc.pwd}"></property>
  36. <!-- c3p0私有属性 -->
  37. <property name="maxPoolSize" value="30"></property>
  38. <property name="minPoolSize" value="10"></property>
  39. <!-- 关闭后不自动提交 -->
  40. <property name="autoCommitOnClose" value="false"></property>
  41. <!-- 连接超时时间 -->
  42. <property name="checkoutTimeout" value="1000"></property>
  43. <!-- 连接失败重试次数 -->
  44. <property name="acquireRetryAttempts" value="2"></property>
  45. </bean>
  46. <!-- 3需要使用mybatis则这里需要配置sqlsessionFactory对象 -->
  47. <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
  48. <!-- 注入数据库连接池
  49. 在单独的mybatis中是在configuration中配置的数据库连接,在这里mybatis值配置了mapper
  50. 才能获取sqlSessionFactory对象
  51. 所以需要为这个类注入数据库连接池
  52. -->
  53. <property name="dataSource" ref="dataSource"></property>
  54. <!-- mybatis全局配置文件 -->
  55. <property name="configLocation" value="classpath:mybatis-config.xml"></property>
  56. <!-- 扫描entity包使用别名,不然前面配置的mapper直接使用的类名会出错
  57. 多个包需要扫描 <property name="typeAliasesPackage" value="org.seckill.entity;org.seckill.entity2"/> -->
  58. <property name="typeAliasesPackage" value="org.mtest.entity"></property>
  59. <!-- 扫描sql配置文件也就是mapper里面的 -->
  60. <property name="mapperLocations" value="classpath:mapper/*.xml"></property>
  61. </bean>
  62. <!-- 4 配置扫描dao接口包,动态实现dao接口,自动注入到spring容器中 -->
  63. <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
  64. <!-- 注入到sqlSessionFactory -->
  65. <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
  66. <!-- 给出需要扫描的dao包 -->
  67. <property name="basePackage" value="org.mtest.dao"></property>
  68. </bean>
  69. </beans>

3)上面配置已经差不多了,接下来在src下创建两个包org.mtest.entity,org.mtest.dao

3.1在entity下面创建一个实体javaBean,User

  1. package org.mtest.entity;
  2. public class User {
  3. private int id;
  4. private String userName;
  5. private String password;
  6. private int age;
  7. public String getUserName() {
  8. return userName;
  9. }
  10. public void setUserName(String userName) {
  11. this.userName = userName;
  12. }
  13. public String getPassword() {
  14. return password;
  15. }
  16. public void setPassword(String password) {
  17. this.password = password;
  18. }
  19. public int getAge() {
  20. return age;
  21. }
  22. public void setAge(int age) {
  23. this.age = age;
  24. }
  25. public int getId() {
  26. return id;
  27. }
  28. public void setId(int id) {
  29. this.id = id;
  30. }
  31. }

 

 

3.2位该实体类创建一个接口dao用来对其进行数据操作

 

  1. package org.mtest.dao;
  2. import org.apache.ibatis.annotations.Param;
  3. import org.mtest.entity.User;
  4. public interface UserDao {
  5. /**
  6. * 通过id查询用户
  7. * @param id
  8. * @return
  9. */
  10. User queryById(@Param("id")int id);
  11. }

4)接下来就是需要配置mybatis的mapper了,首先在resources下面创建一个和spring同级的mapper文件,并创建一个userDao.xml文件用于配置映射

 

 

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="org.mtest.dao.UserDao">
  6. <select id="queryById" resultType="User">
  7. select user_name,password,age
  8. from user
  9. where id = #{id}
  10. </select>
  11. </mapper>

 

 

 

 

 

 

经过上面的配置spring和mybatis已经整合完毕了,接下来我们测试一下(由于spring的版本我没有统一好导致了junit不能进行单元测试),这里我直接使用main函数进行测试(上面的截图少了三个包,在下载的文件里面包含了所有)

 

测试之前首先插入一条数据  

insert into user(user_name,password,age)

values('zhangSan','123456','20');

 

编写一个测试类

 

 

  1. package test.user;
  2. import org.mtest.dao.UserDao;
  3. import org.mtest.entity.User;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;
  6. public class TestUserDao {
  7. private static UserDao userDao;
  8. public static void main(String[] args) {
  9. //加载容器
  10. ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring/spring-dao.xml");
  11. //bean的名字与接口名相同但首字母小写
  12. userDao = (UserDao) context.getBean("userDao");
  13. User user = userDao.queryById(1);
  14. System.out.println(user.getUserName() +"****"+user.getPassword()+"***"+user.getAge());
  15. }
  16. }
 

测试结果日志(需要在resources文件下创建一个xml文件再会有日志输出,该日志)

 

 

 

 

日志lofback.xml文件内容如下:

 

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
  4. <!-- encoders are assigned the type
  5. ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
  6. <encoder>
  7. <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
  8. </encoder>
  9. </appender>
  10. <root level="debug">
  11. <appender-ref ref="STDOUT" />
  12. </root>
  13. </configuration>

 

 

 

运行结果为:可以从日志中看到我们调用dao中的方法时执行了查询语句,并成功返回了我之前插入的数据

  1. 11:17:00.563 [main] DEBUG org.mtest.dao.UserDao.queryById - ==> Preparing: select user_name,password,age from user where id = ?
  2. 11:17:00.660 [main] DEBUG org.mtest.dao.UserDao.queryById - ==> Parameters: 1(Integer)
  3. 11:17:00.699 [main] DEBUG org.mtest.dao.UserDao.queryById - <== Total: 1
  4. 11:17:00.706 [main] DEBUG org.mybatis.spring.SqlSessionUtils - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7e7be63f]
  5. zhangSan****123456***20

 

都此处spring和mybatis的整合就完成了,接下来是springmvc了,我在下节当中进行整理

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/200203
推荐阅读
相关标签
  

闽ICP备14008679号