我实体类里用的是 springboot 里@Slf4j   @Data  注解式写的  这样可以减少代码量 ,但是遇到一个问题影响我好长时间 出现了这个错误  Property [*****] not found on type [com.erp.pojo.ErpSupplier] 明明跟数据库和实体类里写的哪哪都一样但是它就是保错 最后才发现里边不能有大写字母,把数据库里那些大写的全部换成小写就可以实现了 虽然知道怎么解决这个问题,但是不知道为啥会这样,有没有大佬们来解释解释☺☺…
一.前提:项目之前使用springboot+spring-data-mongodb.现在需要加入elasticsearch做搜索引擎,这样mongo和elasticsearch共存了. 二.报错信息: Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TTSAudioInfoEsRepository': Invocation of init meth…
错误原因:org.springframework.data.domain.SortSort sort=new Sort(Sort.Direction.DESC,"created_time");//此处使用了数据库的字段名 public Sort(Sort.Direction direction, String... properties) {//property对应的是table orm后的Java对象的字段名 this(direction, (List)(properties ==…
log4j:WARN No appenders could be found for logger (org.hibernate.cfg.Environment). log4j:WARN Please initialize the log4j system properly. Exception in thread "main" org.hibernate.TypeMismatchException: Provided id of the wrong type for class po…
Spring Data JPA自定义Repository Caused by: org.springframework.data.mapping.PropertyReferenceException: No property id found for type Users! 排错方案: 1. 比我这个名字就不一致了,导致它解析不到实体类. 2. 要跟自己实体类里面的字段一致,否则解析不到…
java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:125) at org.springframework.test.context.suppo…
PropertyReferenceException: No property creation found for type @RequestParam(required = false, defaultValue = "1") Integer page,@RequestParam(required = false, defaultValue = "10") Integer size,@RequestParam(required = false, defaultV…
刚开始学spring mvc ,遇到这个报错. jsp页面 user 实体类 public class User { private String name; private int age; private String interest; public User(){ } public User(String name,int age,String interest){ this.name = name; this.age = age; this.interest = interest; }…
Respository没有找到该参数 1)由该参数,函数名写错,不符合JPA规范 2)实体类没有该参数…
我们使用mybatis的逆向工程来生成pojo类,省去很多不必要的工作. 我把逆向工程需要的项目如下:…