forezp / blog-comments

3 stars 0 forks source link

Spring Boot教程第5篇:beatsql - 方志朋的博客 #91

Open forezp opened 5 years ago

forezp commented 5 years ago

https://www.fangzhipeng.com/springboot/2017/05/05/sb5-beatlsql.html

BeetSql是一个全功能DAO工具, 同时具有Hibernate 优点 & Mybatis优点功能,适用于承认以SQL为中心,同时又需求工具能自动能生成大量常用的SQL的应用。

xiaokuige commented 5 years ago

为啥博客的代码与github上的不一致

yangpengchao1 commented 5 years ago

不知道为何AccountDao一直注入不进去到controller中

libaolei007 commented 5 years ago

问题:......is not visible from class loader 1.在AccountDao上添加@Repository注解(r大写)【不加不影响,但是controller会报红提示】 2.把博主提供的maven依赖换一下版本

  <dependency>
        <groupId>com.ibeetl</groupId>
        <artifactId>beetl</artifactId>
        <version>2.7.23</version>
    </dependency>
    <dependency>
        <groupId>com.ibeetl</groupId>
        <artifactId>beetlsql</artifactId>
        <version>2.9.12</version>
    </dependency>