application.properties 424 B

123456789101112131415
  1. # 服务器配置
  2. server.port=8080
  3. # SQLite Database configuration
  4. spring.datasource.url=jdbc:sqlite:ai_two.db
  5. spring.datasource.driver-class-name=org.sqlite.JDBC
  6. # JPA配置
  7. spring.jpa.hibernate.ddl-auto=update
  8. spring.jpa.show-sql=true
  9. spring.jpa.properties.hibernate.format_sql=true
  10. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.SQLServerDialect
  11. # 开发工具配置
  12. spring.devtools.restart.enabled=true