spring boot mybatis druid snaker配合使用的问题?

发布于 2021-11-28 01:26:40 字数 1956 浏览 765 评论 3


最近使用spring-boot,druid,Mybatis写了一些东西

其中@MapperScan("com.varicom.mapper") 扫描

到这里都没问题,eclipse启动和打包运行都没问题

后来工程引入snaker,根据snaker 2.4的mybatis配置

<!-- mybatis access -->
<bean id="dbAccess" class="org.snaker.engine.access.mybatis.MybatisAccess">
<property name="sqlSessionFactory" ref="sqlSessionFactory"/>
</bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="configLocation" value="classpath:mybatis.cfg.xml"></property>
<property name="dataSource" ref="dataSource" />
<property name="typeAliasesPackage" value="org.snaker.engine.entity" />
</bean>
使用 mybatis ,需要在 mybatis.cfg.xml 配置文件中增加 snaker 的类型及映射文件
<typeAliases>
<package name="org.snaker.engine.entity"/>
</typeAliases>
<mappers>
<mapper resource="mapper/process.xml"/>
<mapper resource="mapper/order.xml"/>
<mapper resource="mapper/task.xml"/>
<mapper resource="mapper/task-actor.xml"/>
<mapper resource="mapper/hist-order.xml"/>
<mapper resource="mapper/hist-task.xml"/>
<mapper resource="mapper/hist-task-actor.xml"/>
<mapper resource="mapper/query.xml"/>
<mapper resource="mapper/hist-query.xml"/>
<mapper resource="mapper/surrogate.xml"/>
</mappers>

eclispe启动,访问一切ok,

而后工程打包运行便会卡住在

2015-01-27 11:43:53.094  INFO 32936 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'dataSource' of type [class com.alibaba.druid.pool.DruidDataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

不知道但大家见过此类问题不?

@wenshao

@Dead_knight


如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

悸初 2021-11-29 15:34:28

回复
@Dead_knight : 是自定映射mybatis还是自动抛弃mybatis的orm了??

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文