blob: 0a2484847a33c262ca42d78e2dad3fc71b82a863 [file] [log] [blame]
qiaoweif7ef1432019-04-15 17:52:42 +08001#######################################springboot配置 start#################################
2# 单库数据库配置
3spring.datasource.url=jdbc:oracle:thin:@172.28.201.101:47922:orcl
4spring.datasource.username=dlpay
5spring.datasource.password=kingstar
6spring.datasource.driver.class=oracle.jdbc.driver.OracleDriver
7spring.jpa.database-platform=org.hibernate.dialect.Oracle10gDialect
8spring.jpa.show-sql=true
9spring.datasource.hikari.connection-timeout=60000
10spring.datasource.hikari.maximum-pool-size=5
11spring.jpa.hibernate.ddl-auto=update
12# logging
13logging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} %-5level %logger{36} - %msg%n
14logging.level.org.hibernate.SQL=debug
15#################### JSP PAGE ####################
Xia Kaixiang2d3a1ce2019-04-16 17:58:56 +080016#spring.mvc.view.prefix=/pages/
17#spring.mvc.view.suffix=.jsp
18#################### thymeleaf ####################
19spring.mvc.static-path-pattern=/static/**
20spring.thymeleaf.prefix=classpath:/templates/
21spring.thymeleaf.suffix=.html
22spring.thymeleaf.encoding=UTF-8
23spring.thymeleaf.mode=HTML5
Xia Kaixiang72373d82019-04-18 13:52:36 +080024spring.thymeleaf.cache=false
25spring.thymeleaf.enabled=true
26#################### Redis ####################
27# Redis settings
28redis.server=172.28.201.101
29redis.port=16379
30redis.password=kingstar
31redis.database=0
32#################### jwt ####################
33# jwt settings
34jwt.secret=Zj5taLomEbrM0lk+NMQZbHfSxaDU1wekjT+kiC3YzDw=
35jwt.expiration=3600
36jwt.header=payapi