-
新建一个基础项目
-
连接的数据库为postgres,配置文件如下
spring.datasource.url=jdbc:postgresql://localhost:5432
spring.datasource.username=postgres
spring.datasource.password=123456
spring.datasource.driverClassName=org.postgresql.Driver
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
spring.jpa.properties.hibernate.hbm2ddl.auto=update -
添加对应的依赖
42.2.15
org.postgresql
postgresql
${postgresql.version}
-
bean实体类
-
service层完成数据的格式修改并调用dao层返回结果
-
dao层连接数据库并进行sql语句的运行,返回查询到的类数据
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)