摘要:
发生这个错误,我是这么解决的 1 A,先install 2 B,把引用模块install 3 最后把C,install 阅读全文
摘要:
CREATE SEQUENCE your_seq; CREATE TABLE foo( id int default nextval('your_seq'::regclass), other_column TEXT ); INSERT INTO foo(other_column) VALUES (' 阅读全文
摘要:
一,JPA 方式 POM <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> <dependency> 阅读全文