springboot_parent
cn.mesmile
1.0-SNAPSHOT
4.0.0
_08_ssm_jdbc_springboot
org.springframework.boot
spring-boot-starter-parent
2.0.5.RELEASE
org.springframework.boot
spring-boot-starter-web
junit
junit
test
org.springframework.boot
spring-boot-starter-test
mysql
mysql-connector-java
org.mybatis.spring.boot
mybatis-spring-boot-starter
1.1.1
com.github.pagehelper
pagehelper
4.1.0
package cn.mesmile;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.test.context.SpringBootTest;
/**
* @Created with IDEA
* @author: Super Zheng
* @Description: java类作用描述
* @Date:2019/1/3
* @Time:17:58
*
* @MapperScan("cn.mesmile.mapper") 是用于扫描mapper层的
*/
@MapperScan("cn.mesmile.mapper")
@SpringBootApplication
public class SsmApplication {
public static void main(String[] args) {
// 开启springboot应用
SpringApplication.run(SsmApplication.class);
}
}
package cn.mesmile.config;
import com.github.pagehelper.PageHelper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.Properties;
/**
* @Created with IDEA
* @author: Super Zheng
* @Description: java类作用描述
* @Date:2019/1/3
* @Time:19:48
*
* @Configuration相当于配置applicationContext-xxx.xml
*/
@Configuration
public class MyBatisConfiguration {
@Bean
public PageHelper pageHelper() {
System.out.println("MyBatisConfiguration.pageHelper()");
PageHelper pageHelper = new PageHelper();
Properties p = new Properties();
p.setProperty("offsetAsPageNum", "true");
p.setProperty("rowBoundsWithCount", "true");
p.setProperty("reasonable", "true");
pageHelper.setProperties(p);
return pageHelper;
}
}
package cn.mesmile.mapper;
import cn.mesmile.domain.Person;
import cn.mesmile.query.PersonQuery;
import java.util.List;
/**
* @Created with IDEA
* @author: Super Zheng
* @Description: java类作用描述
* @Date:2019/1/3
* @Time:16:05
*/
public interface PersonMapper {
/**
* 保存方法
* @param person
*/
void save(Person person);
/**
* 分页插件
* @param query
* @return
*/
List queryPage(PersonQuery query);
}
package cn.mesmile.service;
import cn.mesmile.domain.Person;
import cn.mesmile.query.PersonQuery;
import java.util.List;
/**
* @Created with IDEA
* @author: Super Zheng
* @Description: java类作用描述
* @Date:2019/1/3
* @Time:16:07
*/
public interface IPersonService {
/**
* 这是添加数据方法
* @param person
*/
void add(Person person);
/**
* 分页查询
* @param query
* @return
*/
List queryPage(PersonQuery query);
}
实现类:
package cn.mesmile.service.impl;
import cn.mesmile.domain.Person;
import cn.mesmile.mapper.PersonMapper;
import cn.mesmile.query.PersonQuery;
import cn.mesmile.service.IPersonService;
import com.github.pagehelper.Page;
import com.github.pagehelper.PageHelper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
/**
* @Created with IDEA
* @author: Super Zheng
* @Description: java类作用描述
* @Date:2019/1/3
* @Time:16:08
*/
@Service
@Transactional(propagation = Propagation.SUPPORTS,readOnly = true,rollbackFor = {})
public class PersonServiceImpl implements IPersonService {
@Autowired
private PersonMapper personMapper;
@Transactional(rollbackFor = {})
@Override
public void add(Person person) {
personMapper.save(person);
}
@Override
public List queryPage(PersonQuery query) {
// 分页插件的使用
PageHelper.startPage(1, 2);
return personMapper.queryPage(query);
}
}
第六步:新建配置文件,用于连接数据库,以及用于别名 这里使用配置文件为:application.yml
spring:
datasource:
url: jdbc:mysql://localhost:3306/test
driver-class-name: com.mysql.jdbc.Driver
password: 数据库密码
username: 数据库登陆名
#配置别名
mybatis:
type-aliases-package: cn.mesmile.domain,cn.mesmile.query
INSERT INTO t_person (name) VALUES (#{name})
项目整体结构图:
package cn.mesmile.service;
import cn.mesmile.SsmApplication;
import cn.mesmile.domain.Person;
import cn.mesmile.query.PersonQuery;
import com.github.pagehelper.Page;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.util.List;
import static org.junit.Assert.*;
/**
* @Created with IDEA
* @author: Super Zheng
* @Description: java类作用描述
* @Date:2019/1/3
* @Time:18:11
*/
@RunWith(SpringRunner.class)
@SpringBootTest(classes = SsmApplication.class)
public class IPersonServiceTest {
@Autowired
private IPersonService personService;
/**
* 测试添加
*/
@Test
public void add() {
Person person = new Person("spring");
System.out.println("添加数据之前:"+person);
personService.add(person);
System.out.println("添加数据之后:"+person);
}
/**
* 测试通过,分页插件查询
*/
@Test
public void testPageQuery () {
Page page = (Page) personService.queryPage(new PersonQuery());
System.out.println("总数据条数:"+page.getTotal());
System.out.println("总页数:"+page.getPages());
System.out.println("当前页数:"+page.getPageNum());
System.out.println("每页显示条数:"+page.getPageSize());
for (Person person : page) {
System.out.println(person);
}
}
}