springboot 中properties配置

// springboot连接数据库
#数据库地址,数据库名:hkn
spring.datasource.url=jdbc:mysql://localhost:3306/hkn?characterEncoding=utf8
#数据库名:用户名:root,密码:root
spring.datasource.username=root
spring.datasource.password=root

#数据库驱动
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

#指定数据库类型
spring.jpa.database=MYSQL

#指定是否在日志中显示sql语句
spring.jpa.show-sql=true
#指定自动创建,更新数据库表等,存在就不创建,不存在就创建
spring.jpa.hibernate.ddl-auto=update
#让控制器输出的json字符串更美观
spring.jackson.serialization.indent-output=true

springboot 中pom配置


<!– spring-boot-starter–>
<!– 这是Spring Boot的核心启动器,包含了自动配置、日志和YAML>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter</artifactId>
</dependency>

<!–spring-boot-starter-data-jpa –>
<!–支持JPA(Java Persistence API.,包括spring-data-jpa、spring-orm、Hibernate–>
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

更多推荐