第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

SpringBoot如何使用JavaBean配置mybatis分頁插件

SpringBoot如何使用JavaBean配置mybatis分頁插件

溫溫醬 2018-08-04 13:01:06
系統(tǒng)環(huán)境:SpringBoot(配置方式全部采用javaBean)MyBatis數(shù)據(jù)庫:Oracle以下是sqlSessionFactory的配置我想在現(xiàn)在的配置中增加mybatis的分頁插件,經(jīng)過一些嘗試沒有成功。由于使用的javaBean的配置個(gè)人不太熟練,然后在開源的插件配置上都是xml的配置,哪位同學(xué)有經(jīng)驗(yàn)請(qǐng)指教。以下是我的一些參考資料參考資料:https://github.com/abel533/My...http://blog.csdn.net/isea533/...
查看完整描述

2 回答

?
慕的地10843

TA貢獻(xiàn)1785條經(jīng)驗(yàn) 獲得超8個(gè)贊

@Configuration

@EnableTransactionManagement

@MapperScan(basePackages = "com.example.schedule.dao")

@PropertySource("classpath:application.yml")

public class MyBatisConfig {


    @Autowired

    private Environment env;


    @Bean

    public DataSource dataSource() {

        DruidDataSource dataSource = new DruidDataSource();

        dataSource.setUrl(env.getProperty("druid.url"));

        dataSource.setUsername(env.getProperty("druid.username"));

        dataSource.setPassword(env.getProperty("druid.password"));

        dataSource.setInitialSize(Integer.parseInt(env.getProperty("druid.initial-size")));

        dataSource.setMinIdle(Integer.parseInt(env.getProperty("druid.min-idle")));

        dataSource.setMaxActive(Integer.parseInt(env.getProperty("druid.max-active")));

        dataSource.setTestOnBorrow(Boolean.valueOf(env.getProperty("druid.test-on-borrow")));

        try {

            dataSource.init();

        } catch (SQLException e) {

            throw new RuntimeException(e);

        }

        return dataSource;

    }


    @Bean

    public SqlSessionFactory sqlSessionFactory(DataSource dataSource) {

        SqlSessionFactoryBean bean = new SqlSessionFactoryBean();

        bean.setDataSource(dataSource);

        //分頁插件

        PageHelper pageHelper = new PageHelper();

        Properties props = new Properties();

        props.setProperty("reasonable", "true");

        props.setProperty("supportMethodsArguments", "true");

        props.setProperty("returnPageInfo", "check");

        props.setProperty("params", "count=countSql");

        pageHelper.setProperties(props);

        //添加插件

        bean.setPlugins(new Interceptor[]{pageHelper});

        try {

            //指定基包

            bean.setTypeAliasesPackage(env.getProperty("mybatis.type-aliases-package"));

            bean.setMapperLocations(new PathMatchingResourcePatternResolver().getResources("mapper/*.xml"));

            return bean.getObject();

        } catch (Exception e) {

            e.printStackTrace();

            return null;

        }

    }


    @Bean

    public SqlSessionTemplate sqlSessionTemplate(SqlSessionFactory sqlSessionFactory) {

        return new SqlSessionTemplate(sqlSessionFactory);

    }


    @Bean

    public DataSourceTransactionManager transactionManager(DataSource dataSource) {

        DataSourceTransactionManager dataSourceTransactionManager = new DataSourceTransactionManager();

        dataSourceTransactionManager.setDataSource(dataSource);

        return dataSourceTransactionManager;

    }


}


查看完整回答
反對(duì) 回復(fù) 2018-08-07
?
開滿天機(jī)

TA貢獻(xiàn)1786條經(jīng)驗(yàn) 獲得超13個(gè)贊

PageHelper pageHelper這個(gè)沒有實(shí)現(xiàn)Interceptor接口怎么給new Interceptor[]?
新版本中有個(gè)PageInterceptor類實(shí)現(xiàn)了Interceptor接口,這個(gè)時(shí)候賦值給new Interceptor[]才可行。

        // 設(shè)置MyBatis分頁插件

        PageInterceptor pageInterceptor = new PageInterceptor();

        Properties properties = new Properties();

        properties.setProperty("helperDialect", "oracle");

        properties.setProperty("offsetAsPageNum", "true");

        properties.setProperty("rowBoundsWithCount", "true");

        pageInterceptor.setProperties(properties);

        bean.setPlugins(new Interceptor[]{pageInterceptor});


查看完整回答
反對(duì) 回復(fù) 2018-08-07
  • 2 回答
  • 0 關(guān)注
  • 2047 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)