摘要:
JPA(hibernate)映射对象的4种状态: 临时状态/瞬时状态:刚new出来的对象,没有持久化(persist)即没有被entityManager关联。无id对象 Person person = new Person(); // 瞬时状态 person.setName("张三"); 持久化状态 阅读全文
摘要:
版本:springboot3.0.2 出现问题的原因:使用了langchain4j依赖,版本为1.0.1 项目启动时报错Could not find class [org.springframework.boot.autoconfigure.web.client.RestClientAutoConf 阅读全文
摘要:
之前一直正常的接口,最近打开就是报500。 切到后端看,问题是 Unresolved compilation problems: xxxxx cannot be resolved to a type 网上给出的解决方案: 1.看看代码有没有问题 2.重新编译一下:idea自带的maven先把对应的模 阅读全文