NUTZ-ONEKEY3.1项目配置文件
application.yml
datasource:
druid:
url: jdbc:mysql://127.0.0.1:3306/spring-thunder?useUnicode=true&characterEncoding=utf8&useSSL=false
username: root
password: root
driver-class-name: com.mysql.jdbc.Driver
filters: stat,wall,log4j
initialSize: 10
minIdle: 1
maxActive: 50
maxWait: 60000
timeBetweenEvictionRunsMillis: 60000
minEvictableIdleTimeMillis: 300000
validationQuery: SELECT 'sino soft'
testWhileIdle: true
testOnBorrow: true
testOnReturn: false
poolPreparedStatements: true
maxPoolPreparedStatementPerConnectionSize: 20
web-stat-filter:
enabled: true
url-pattern: /*
exclusions: /druid/*,*.js,*.gif,*.jpg,*.png,*.css,*.ico
stat-view-servlet:
enabled: true
url-pattern: /druid/*
# login-username: root
# login-password: 123456
resetEnable: true
management:
security:
enabled: false
=================================
运行项目
clone 源码 git clone https://github.com/Kerbores/NUTZ-ONEKEY.git
导入maven项目 mvn eclipse:eclipse
修改数据源 ,修改datasource.properties中的数据源配置密码采用druid加密,请自行参照druid的加密方式进行修改
运行项目 ,直接在eclipse中运行项目即可,启动将自动创建数据表和初始化数据
部署项目
clone 源码 git clone https://github.com/Kerbores/NUTZ-ONEKEY.git
maven 构建 mvn clean package -Dmaven.test.skip=true
环境感知的配置 ,数据源密码采用druid加密,请自行参照druid的加密方式进行修改
windows 在C:/datasource下创建数据源的properties配置文件
linux/mac 在 /var/datasource 下创建数据源的properties配置文件
启动项目 将mvn编译产生的war包部署到应用服务器内并启动即可
本地运行 修改 application.yml 即可
但是服务器,修改application.yml,和创建datasource.properties 都无法运行。
求一个,服务器,部署 数据库配置文件