12345678910111213141516171819202122232425262728293031 |
- package com.hssx.cloudmodel;
- import com.github.pagehelper.PageHelper;
- import org.mybatis.spring.annotation.MapperScan;
- import org.springframework.boot.SpringApplication;
- import org.springframework.boot.autoconfigure.SpringBootApplication;
- import org.springframework.context.annotation.Bean;
- import java.util.Properties;
- @SpringBootApplication
- @MapperScan("com.hssx.cloudmodel.mapper")
- public class CloudModelApplication {
- public static void main(String[] args) {
- SpringApplication.run(CloudModelApplication.class, args);
- }
- @Bean
- public PageHelper pageHelper(){
- PageHelper pageHelper = new PageHelper();
- Properties properties = new Properties();
- properties.setProperty("offsetAsPageNum","true");
- properties.setProperty("rowBoundsWithCount","true");
- properties.setProperty("reasonable","true");
- properties.setProperty("dialect","mysql"); //配置mysql数据库的方言
- pageHelper.setProperties(properties);
- return pageHelper;
- }
- }
|