dyc87112 / SpringBoot-Learning

《Spring Boot基础教程》,2.x版本持续连载中!点击下方链接直达教程目录!
https://blog.didispace.com/spring-boot-learning-2x/
15.75k stars 4.88k forks source link

userRepository.save(……)失败 #55

Open wanzixin opened 4 years ago

wanzixin commented 4 years ago

我是用postgersql数据库,最后这里为什么插入不成功啊,是id主键没设置好吗?

wanzixin commented 4 years ago

@dyc87112 博主能帮我解答下嘛

dyc87112 commented 4 years ago

换了其他数据库的话,注意方言的设置

wanzixin commented 4 years ago

换了其他数据库的话,注意方言的设置

我方言的设置是这样 spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect,出现的问题和上面一样诶

wanzixin commented 4 years ago

@dyc87112 博主我找到问题所在了,在postgresql数据库中user是关键字,不能用来做数据库名,我改成其他的发现ok了