摘要: 发生这个错误,我是这么解决的 1 A,先install 2 B,把引用模块install 3 最后把C,install 阅读全文
posted @ 2022-05-26 16:39 正怒月神 阅读(141) 评论(0) 推荐(0) 编辑
摘要: CREATE SEQUENCE your_seq; CREATE TABLE foo( id int default nextval('your_seq'::regclass), other_column TEXT ); INSERT INTO foo(other_column) VALUES (' 阅读全文
posted @ 2022-05-26 14:15 正怒月神 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 一,JPA 方式 POM <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> 阅读全文
posted @ 2022-05-26 10:30 正怒月神 阅读(2219) 评论(0) 推荐(0) 编辑