- # 服务器配置
- server.port=8080
- # SQLite Database configuration
- spring.datasource.url=jdbc:sqlite:ai_two.db
- spring.datasource.driver-class-name=org.sqlite.JDBC
- # JPA配置
- spring.jpa.hibernate.ddl-auto=update
- spring.jpa.show-sql=true
- spring.jpa.properties.hibernate.format_sql=true
- spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.SQLServerDialect
- # 开发工具配置
- spring.devtools.restart.enabled=true
|