初始化系统配置

yun-zuoyi
wei.peng 7 years ago
parent 507a9f0866
commit a89ef37c18

@ -14,22 +14,22 @@
##主数据源,读写 ##主数据源,读写
#impp.write.datasource.type=com.zaxxer.hikari.HikariDataSource #impp.write.datasource.type=com.zaxxer.hikari.HikariDataSource
impp.write.datasource.driver-class-name=com.mysql.jdbc.Driver impp.write.datasource.driver-class-name=com.mysql.jdbc.Driver
impp.write.datasource.jdbc-url=jdbc:mysql://localhost:3306/i3core impp.write.datasource.jdbc-url=jdbc:mysql://192.168.1.55:3306/dev_i3_core?useUnicode=true&characterEncoding=UTF-8
impp.write.datasource.username=root impp.write.datasource.username=i3_dev_core
impp.write.datasource.password=123456 impp.write.datasource.password=i3_core_pass
##辅数据源,只读 ##辅数据源,只读
#impp.read.datasource.type=com.zaxxer.hikari.HikariDataSource #impp.read.datasource.type=com.zaxxer.hikari.HikariDataSource
impp.read.datasource.driver-class-name=com.mysql.jdbc.Driver impp.read.datasource.driver-class-name=com.mysql.jdbc.Driver
impp.read.datasource.jdbc-url=jdbc:mysql://localhost:3306/i3core impp.read.datasource.jdbc-url=jdbc:mysql://192.168.1.55:3306/dev_i3_core?useUnicode=true&characterEncoding=UTF-8
impp.read.datasource.username=root impp.read.datasource.username=i3_dev_core
impp.read.datasource.password=123456 impp.read.datasource.password=i3_core_pass
##############定时任务持久化############## ##############定时任务持久化##############
impp.schedule.datasource.driver-class-name=com.mysql.jdbc.Driver impp.schedule.datasource.driver-class-name=com.mysql.jdbc.Driver
impp.schedule.datasource.jdbc-url=jdbc:mysql://localhost:3306/i3_schedule impp.schedule.datasource.jdbc-url=jdbc:mysql://192.168.1.55:3306/dev_i3_schedule?useUnicode=true&characterEncoding=UTF-8
impp.schedule.datasource.username=root impp.schedule.datasource.username=i3_dev_schedule
impp.schedule.datasource.password=123456 impp.schedule.datasource.password=i3_schedule_pass
impp.schedule.datasource.max-connections=20 impp.schedule.datasource.max-connections=20
#定时任务在服务启动后多少秒执行 #定时任务在服务启动后多少秒执行
impp.schedule.start.after-second=20 impp.schedule.start.after-second=20

@ -1,5 +1,5 @@
#Generated by Apache Maven #Generated by Apache Maven
#Sun Sep 30 10:24:59 CST 2018 #Thu Oct 18 20:43:09 CST 2018
version=1.0-SNAPSHOT version=1.0-SNAPSHOT
groupId=i3plus.core groupId=i3plus.core
artifactId=i3plus-core-icloud artifactId=i3plus-core-icloud

@ -126,6 +126,36 @@
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<!-- 私有仓库引用配置 -->
<repositories>
<repository>
<id>nexus</id>
<url>http://mvn.estsh.com/repository/maven-public/</url>
</repository>
</repositories>
<!-- 私有仓库Jar 包更新配置 -->
<distributionManagement>
<repository>
<id>maven-releases</id>
<name>Nexus ReleaseRepository</name>
<url>http://mvn.estsh.com/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>maven-snapshots</id>
<name>Nexus SnapshotRepository</name>
<url>http://mvn.estsh.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build> <build>
<plugins> <plugins>
<!-- maven编译的一些插件 --> <!-- maven编译的一些插件 -->
@ -173,4 +203,5 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>
Loading…
Cancel
Save