You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

application-dev.yml 890 B

12345678910111213141516171819202122
  1. spring:
  2. datasource:
  3. username: root
  4. password: root
  5. url: jdbc:mysql://127.0.0.1:3306/tothefor?serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=UTF-8
  6. driver-class-name: com.mysql.cj.jdbc.Driver
  7. server:
  8. port: 8081
  9. mybatis-plus:
  10. global-config:
  11. db-config:
  12. logic-delete-field: isDelete # 全局逻辑删除的实体字段名(since 3.3.0,配置后可以忽略不配置步骤2)
  13. logic-delete-value: true # 逻辑已删除值(默认为 1)
  14. logic-not-delete-value: false # 逻辑未删除值(默认为 0)
  15. type-aliases-package: com.tothefor.pojo.entity # 哪一个包里面的类可以在mapper文件中直接简写为类名
  16. mapper-locations: classpath:/mapper/*.xml # 找mapper文件的位置,第一个位置不需要斜杠,classpath表示从resources开始
  17. # configuration:
  18. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

基于MindSpore的多模态股票价格预测系统研究 Informer,LSTM,RNN