添加 sql和生产
This commit is contained in:
parent
e3304e45a1
commit
237c8d5251
|
|
@ -18,5 +18,6 @@ public class SecurityApplication {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(SecurityApplication.class, args);
|
SpringApplication.run(SecurityApplication.class, args);
|
||||||
|
System.err.println("财务小工具启动成功");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,13 +2,12 @@ server.port=2002
|
||||||
#????·??
|
#????·??
|
||||||
server.servlet.context-path=/yncw
|
server.servlet.context-path=/yncw
|
||||||
#mysql?????????
|
#mysql?????????
|
||||||
#spring.datasource.url=jdbc:mysql://192.168.0.14:1103/yncw1?useUnicode=true&characterEncoding=utf-8&allowMultiQueries\
|
#spring.datasource.url=jdbc:mysql://192.168.0.14:1103/yncw1?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true
|
||||||
# =true
|
|
||||||
#spring.datasource.username=root
|
#spring.datasource.username=root
|
||||||
#spring.datasource.password=dszadmin@ynreal14!
|
#spring.datasource.password=dszadmin@ynreal14!
|
||||||
spring.datasource.url=jdbc:mysql://192.168.1.23:2000/yncw_real?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true
|
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/yncw_real?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true
|
||||||
spring.datasource.username=root
|
spring.datasource.username=mroot
|
||||||
spring.datasource.password=Ynsbd@mysql123!
|
spring.datasource.password=bonus@admin123
|
||||||
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
||||||
spring.datasource.max-idle=10
|
spring.datasource.max-idle=10
|
||||||
spring.datasource.max-wait=60000
|
spring.datasource.max-wait=60000
|
||||||
|
|
@ -25,9 +24,6 @@ mybatis.configuration.map-underscore-to-camel-case=true
|
||||||
spring.redis.host=127.0.0.1
|
spring.redis.host=127.0.0.1
|
||||||
spring.redis.port=6379
|
spring.redis.port=6379
|
||||||
spring.redis.password=
|
spring.redis.password=
|
||||||
#spring.redis.host=192.168.1.23
|
|
||||||
#spring.redis.port=2001
|
|
||||||
#spring.redis.password=Ynsbd@Redis123!
|
|
||||||
# ???
|
# ???
|
||||||
logging.config=classpath:logback-boot.xml
|
logging.config=classpath:logback-boot.xml
|
||||||
log.level.root=info
|
log.level.root=info
|
||||||
|
|
@ -50,7 +46,7 @@ spring.servlet.multipart.enabled=true
|
||||||
#files.path=e:\\yncw\\files
|
#files.path=e:\\yncw\\files
|
||||||
files.path=/data/yncw/files
|
files.path=/data/yncw/files
|
||||||
files.url=http://127.0.0.1:8080/yncw/statics
|
files.url=http://127.0.0.1:8080/yncw/statics
|
||||||
files.upload=e:\\files
|
files.upload=F:\\files
|
||||||
|
|
||||||
#sql.ip=192.168.0.14
|
#sql.ip=192.168.0.14
|
||||||
#sql.host=1103
|
#sql.host=1103
|
||||||
|
|
@ -63,3 +59,7 @@ sql.host=2000
|
||||||
sql.name=root
|
sql.name=root
|
||||||
sql.pwd=Ynsbd@mysql123!
|
sql.pwd=Ynsbd@mysql123!
|
||||||
sql.database=yncw_real
|
sql.database=yncw_real
|
||||||
|
|
||||||
|
|
||||||
|
#?????
|
||||||
|
admin
|
||||||
|
|
@ -0,0 +1,64 @@
|
||||||
|
server.port=2002
|
||||||
|
#????·??
|
||||||
|
server.servlet.context-path=/yncw
|
||||||
|
#mysql?????????
|
||||||
|
#spring.datasource.url=jdbc:mysql://192.168.0.14:1103/yncw1?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true
|
||||||
|
#spring.datasource.username=root
|
||||||
|
#spring.datasource.password=dszadmin@ynreal14!
|
||||||
|
spring.datasource.url=jdbc:mysql://192.168.1.23:2000/yncw_real?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true
|
||||||
|
spring.datasource.username=root
|
||||||
|
spring.datasource.password=Ynsbd@mysql123!
|
||||||
|
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
|
||||||
|
spring.datasource.max-idle=10
|
||||||
|
spring.datasource.max-wait=60000
|
||||||
|
spring.datasource.min-idle=5
|
||||||
|
spring.datasource.initial-size=5
|
||||||
|
server.session.timeout=100000
|
||||||
|
server.tomcat.uri-encoding=UTF-8
|
||||||
|
#mapper????
|
||||||
|
mybatis.mapper-locations=classpath:mappers/*/*Mapper.xml
|
||||||
|
mybatis.type-aliases-package=com.bonus.boot.manager.*.entity
|
||||||
|
# ?????????????????????
|
||||||
|
mybatis.configuration.map-underscore-to-camel-case=true
|
||||||
|
#redis config
|
||||||
|
#spring.redis.host=127.0.0.1
|
||||||
|
#spring.redis.port=6379
|
||||||
|
#spring.redis.password=
|
||||||
|
spring.redis.host=192.168.1.23
|
||||||
|
spring.redis.port=2001
|
||||||
|
spring.redis.password=Ynsbd@Redis123!
|
||||||
|
# ???
|
||||||
|
logging.config=classpath:logback-boot.xml
|
||||||
|
log.level.root=info
|
||||||
|
log.level.my=debug
|
||||||
|
log.file=logs/sys-back.log
|
||||||
|
log.maxsize=30MB
|
||||||
|
#???????С
|
||||||
|
server.max-http-header-size=102400
|
||||||
|
spring.servlet.multipart.max-file-size=999MB
|
||||||
|
spring.servlet.multipart.max-request-size=999MB
|
||||||
|
spring.http.multipart.maxFileSize=999MB
|
||||||
|
spring.http.multipart.maxRequestSize=999MB
|
||||||
|
#?????????????
|
||||||
|
#spring.security.user.name=zys
|
||||||
|
#spring.security.user.password=123
|
||||||
|
token.expire.seconds=7200
|
||||||
|
#??????
|
||||||
|
spring.servlet.multipart.enabled=true
|
||||||
|
|
||||||
|
#files.path=e:\\yncw\\files
|
||||||
|
files.path=/data/yncw/files
|
||||||
|
files.url=http://127.0.0.1:8080/yncw/statics
|
||||||
|
files.upload=e:\\files
|
||||||
|
|
||||||
|
#sql.ip=192.168.0.14
|
||||||
|
#sql.host=1103
|
||||||
|
#sql.name=root
|
||||||
|
#sql.pwd=dszadmin@ynreal14!
|
||||||
|
#sql.database=yncw
|
||||||
|
|
||||||
|
sql.ip=192.168.1.23
|
||||||
|
sql.host=2000
|
||||||
|
sql.name=root
|
||||||
|
sql.pwd=Ynsbd@mysql123!
|
||||||
|
sql.database=yncw_real
|
||||||
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue