You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1015 B
33 lines
1015 B
spring.application.name=hnu-course-analysis
|
|
|
|
server.port=8084
|
|
|
|
# SQLite数据库配置
|
|
spring.datasource.url=jdbc:sqlite:course.db
|
|
spring.datasource.driver-class-name=org.sqlite.JDBC
|
|
spring.jpa.database-platform=org.hibernate.community.dialect.SQLiteDialect
|
|
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
spring.jpa.show-sql=true
|
|
spring.jpa.properties.hibernate.format_sql=true
|
|
spring.jpa.open-in-view=false
|
|
|
|
spring.sql.init.mode=always
|
|
spring.sql.init.schema-locations=classpath:schema.sql
|
|
|
|
spring.thymeleaf.cache=false
|
|
spring.thymeleaf.prefix=classpath:/templates/
|
|
spring.thymeleaf.suffix=.html
|
|
|
|
logging.level.root=INFO
|
|
logging.level.com.example=DEBUG
|
|
|
|
# 湖南大学选课系统配置
|
|
crawler.hnu.login.url=https://jwxt.hnu.edu.cn/xtgl/login_login.html
|
|
crawler.hnu.username=your_username
|
|
crawler.hnu.password=your_password
|
|
crawler.hnu.course.list.url=https://jwxt.hnu.edu.cn/kbcx/xskbcx_cxXsKb.html
|
|
|
|
# Selenium配置
|
|
selenium.webdriver.chrome.driver.path=C:/chromedriver/chromedriver.exe
|
|
selenium.webdriver.headless=false
|