当前位置:   article > 正文

整合SSM,Mybatis使用注解开发_ssm整合mybatis使用注解

ssm整合mybatis使用注解

就是想来试试SSM整合可不可以简单一点呢,吃太饱吧,
然后这次我就是这样的。用一个用户分页查询的案例来,讲吧

1. 建库建表,插入测试的数据

在这里插入图片描述

2. 创建pojo、dao、service、controller层,把基本的项目结构搭建起来

在这里插入图片描述
大概就像这样子。。。

3. 把配置文件搞好

配置文件就下面两个,一个是web.xml还有一个是spring.xml

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>liliya</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:spring.xml</param-value>
        </init-param>
    </servlet>
    <servlet-mapping>
        <servlet-name>liliya</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

在这个配置文件中,我把springmvc和mybatis必须注入的bean都放到了一起。
springmvc的视图解析器我就没有配置前缀和后缀了,不是很喜欢。
数据源我使用的Druid的数据源,据说这个是最好的数据源。

spring.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       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
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
    <context:component-scan base-package="com.liliya"/>
<!--    mvc注解驱动支持-->
    <mvc:annotation-driven/>
    <context:annotation-config/>
    <mvc:default-servlet-handler/>
<!--    视图解析器-->
    <bean id="shitu" class="org.springframework.web.servlet.view.InternalResourceViewResolver">

    </bean>
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
        <!-- 基本属性 url、user、password -->
        <property name="url" value="jdbc:mysql://localhost:3306/mybatis?serverTimezone=UTC" />
        <property name="username" value="root" />
        <property name="password" value="admin" />
        <property name="driverClassName" value="com.mysql.jdbc.Driver" />

        <!-- 配置初始化大小、最小、最大 -->
        <property name="initialSize" value="3" />
        <property name="minIdle" value="3" />
        <property name="maxActive" value="20" />

        <!-- 配置获取连接等待超时的时间 -->
        <property name="maxWait" value="60000" />

        <!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 -->
        <property name="timeBetweenEvictionRunsMillis" value="60000" />

        <!-- 配置一个连接在池中最小生存的时间,单位是毫秒 -->
        <property name="minEvictableIdleTimeMillis" value="300000" />

        <property name="validationQuery" value="SELECT 1" />
        <property name="testWhileIdle" value="true" />
        <property name="testOnBorrow" value="false" />
        <property name="testOnReturn" value="false" />

        <!-- 打开PSCache,并且指定每个连接上PSCache的大小 -->
        <property name="poolPreparedStatements" value="true" />
        <property name="maxPoolPreparedStatementPerConnectionSize" value="20" />
    </bean>

<!--    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">-->
<!--        <property name="dataSource" ref="dataSource"/>-->
<!--    </bean>-->

    <bean id="sqlSession" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>
<!--        如果写了mapperxml的话,就加上这个-->
<!--        <property name="mapperLocations" value="classpath:mapper/*.xml"/>-->
    </bean>
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="sqlSessionFactoryBeanName" value="sqlSession"/>
        <property name="basePackage" value="com.liliya.dao"/>
    </bean>
</beans>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62

4. 具体的代码

(1) 实体类

public class User implements Serializable {
    private static final long serialVersionUID = -3338359432217195554L;
    private int id;
    private String name;
    private String pwd;

	//get set方法省略
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

(2)dao层接口

@Repository
public interface UserDao {

    @Select("select * from mybatis.user limit #{page},#{step}")
    List<User> queryUserLimit(@Param("page") Integer page, @Param("step") Integer step);
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

(3)service层

public interface UserService {
    //分页查询用户
    List<User> queryUserLimit(@Param("page") Integer page, @Param("step") Integer step);
  • 1
  • 2
  • 3

service实现层

@Service
public class UserServiceImpl implements UserService {
    @Autowired
    private UserDao userDao;
    @Override
    public List<User> queryUserLimit(Integer page, Integer step) {
        return userDao.queryUserLimit((page-1)*step,step);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

(4) controller层

@Controller
public class UserController {
 @Autowired
    private UserService userService;
@GetMapping("/users/{page}")
    public void users(@PathVariable("page") Integer page){
        List<User> users = userService.queryUserLimit(page, 5);
        for (User user : users) {
            System.out.println(user);
        }
        System.out.println("**************");
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

不过我这里没有整合页面。。。

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