chenlei2 / spring-boot-mybatis-rw

基于mybatis,springboot开箱即用的读写分离插件
Apache License 2.0
338 stars 151 forks source link

克隆项目运行报错 #8

Closed Zhazhanan closed 7 years ago

Zhazhanan commented 7 years ago

最近在看springboot mybatis 数据读写分离,想研究下作者的代码。

有两个问题

chenlei2 commented 7 years ago

spring-boot-mybatis-rw-sample这个是springboot 启动的例子,mybatis-rw-sample-xml 是普通xml启动的例子,你启动报错,你用的idea是吧

Zhazhanan commented 7 years ago

是的,编译项目没有问题,启动项目spring-boot-mybatis-rw-sample报错,strudentsServiceImpl自动导入失败,说是未发现类RoundRobinRWRoutingDataSourceProxy

chenlei2 commented 7 years ago
<build>
    <resources>
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.xml</include>
            </includes>
            <filtering>false</filtering>
        </resource>
    </resources>
</build>
chenlei2 commented 7 years ago

pom.xml把这个添加上

chenlei2 commented 7 years ago

mybatis-rw-sample-xml 这个项目没维护了,启动不起来,你看spring-boot-mybatis-rw-sample 这个例子

Zhazhanan commented 7 years ago

可以了,项目跑起来了,我整理下问题,稍后拉取代码请求