"
官方木有springboot+mybatis的配置
只有JPA的,JPA不想用,表关联查询太纠结。
有没有配置过springboot+mybatis的求参考。
或者如何在springboot下,添加原生的配置方法也行
在线等,求大神
""
http://my.oschina.net/ericliuandhisfriends/blog/468466
小弟写的一个Demo,mybatis和Spring-Boot整合
######很简单的....
@Configuration @EnableTransactionManagement @MapperScan("com.*.*.mapper") public class DataBaseConfig { private final Logger log = LoggerFactory.getLogger(DataBaseConfig.class); @Bean @Primary @ConfigurationProperties(prefix = "datasource.primary") public DataSource dataSource() { log.debug("Configuring Datasource"); return new DruidDataSource(); } @Bean public PlatformTransactionManager txManager() { return new DataSourceTransactionManager(dataSource()); } @Bean public SqlSessionFactory sqlSessionFactoryBean() throws Exception { SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean(); sqlSessionFactoryBean.setDataSource(dataSource()); PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); sqlSessionFactoryBean.setMapperLocations(resolver .getResources("classpath:/mapper/*.xml")); return sqlSessionFactoryBean.getObject(); } }
??
mapper注入不就行了
######能详细点吗?"版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。