最赞回答 / NullMoneyException
单纯的count 可以用 Intage 接收 比如要查 一篇博客有几条点赞 我没有在博客类里面添加 点赞类的一对多 只是想单纯的查博客信息还有几条点赞
2018-01-08
最赞回答 / 慕容77
/** * * @param student 待添加的学生 */public void save(Student student) {这样??你写好函数名字 在上面/** 然后回车就有自动添加的方法注释了 自带你写的参数注释
2018-01-02
已采纳回答 / qq_值得等待的烟火_0
比如:对于name属性@Column(length = 20)public void setName(String name) { this.name = name;}
2017-12-21
最新回答 / 随尘软件
你要添加事务注解:@Transactional @Modifying @Query(value="insert into jpa_person(id,name,gender,birth) values(?,?,?,?)",nativeQuery=true) public int insertPerson2(Integer id,String name,Integer gender,Date birth);
2017-12-16
已采纳回答 / 嘿不溜秋
这个错误的提示很明显了,你的spring的bean配置文件中没有id为transactionManager的bean但,或者是引用到它的地方名字可能没有和它的id(bean的id)一致
2017-11-19
最新回答 / 小明同学爱思考
spring boot 官方文档,如何配置两个数据源 https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-two-datasources
2017-10-24
最新回答 / 永远在成长
https://docs.spring.io/spring-data/jpa/docs/1.11.3.RELEASE/reference/html/#repositories.custom-behaviour-for-all-repositories可以参考一下
2017-10-22