##安装 在 mac 下,可以利用 homebrew 直接安装 PostgreSQL:
brew install postgresql
安装好之后有一个数据库(postgres),如需要重新初始化数据库:
initdb /usr/local/var/postgres_mao
启动:
pg_ctl -D /usr/local/var/postgres -l logfile start
关闭:
pg_ctl -D /usr/local/var/postgres stop -s -m fast
##与jpa的整合 build.gradle
compile("org.postgresql:postgresql:9.4-1206-jdbc42")
application.yml
spring:
datasource:
data: classpath*:data.sql
url: jdbc:postgresql://localhost:5432/postgres
username: username
password: 123456
driverClassName: org.postgresql.Driver
jpa:
show-sql: true
database: POSTGRESQL
hibernate.ddl-auto: create-drop
ps:关于spring.jpa.hibernate.ddl-auto配置,出门右转(http://my.oschina.net/maomaolsm/blog/740017)
DAO中主键需要使用数据库IDENTITY
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
ps:@GeneratedValue的设置,出门左转(http://my.oschina.net/maomaolsm/blog/740015)
否则,数据库文件中插入数据需要加上id
INSERT INTO person (id,name) VALUES (1,'maomao');