Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
device-back
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Matrix
device-back
Commits
cc5a73e2
提交
cc5a73e2
authored
9月 05, 2021
作者:
Matrix
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(配置项): 修改了配置文件
修改了配置文件
上级
04204b36
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
39 行增加
和
17 行删除
+39
-17
.gitignore
.gitignore
+1
-0
http-requests-log.http
.idea/httpRequests/http-requests-log.http
+21
-0
pom.xml
dev-union/pom.xml
+8
-7
application-dev.properties
dev-union/src/main/resources/application-dev.properties
+2
-4
application-local.properties
dev-union/src/main/resources/application-local.properties
+6
-3
application.properties
dev-union/src/main/resources/application.properties
+1
-2
pom.xml
pom.xml
+0
-1
没有找到文件。
.gitignore
浏览文件 @
cc5a73e2
...
...
@@ -8,6 +8,7 @@ target/
*.log
.log
**/.log
*.gz
### STS ###
\~*.xlsx
...
...
.idea/httpRequests/http-requests-log.http
浏览文件 @
cc5a73e2
GET http://127.0.0.1:8087/actuator
Accept: application/vnd.spring-boot.actuator.v2+json
<> 2021-09-03T192754.200.json
###
GET http://127.0.0.1:8087/actuator
Accept: application/vnd.spring-boot.actuator.v2+json
<> 2021-09-03T192650.403.json
###
GET http://127.0.0.1:8087/actuator
Accept: application/vnd.spring-boot.actuator.v2+json
<> 2021-09-03T192615.403.json
###
GET http://127.0.0.1:8087/printDocuments1
<> 2021-04-27T124856.403.json
...
...
dev-union/pom.xml
浏览文件 @
cc5a73e2
...
...
@@ -75,7 +75,7 @@
<artifactId>
2
</artifactId>
<version>
2.3
</version>
<scope>
system
</scope>
<systemPath>
${project.basedir}/src/main/resources/lib/oscarJDBC
16
.jar
</systemPath>
<systemPath>
${project.basedir}/src/main/resources/lib/oscarJDBC.jar
</systemPath>
</dependency>
<dependency>
...
...
@@ -136,11 +136,6 @@
<artifactId>
dev-zxing
</artifactId>
</dependency>
<dependency>
<groupId>
com.tykj
</groupId>
<artifactId>
dev-excel
</artifactId>
</dependency>
<dependency>
<groupId>
com.tykj
</groupId>
<artifactId>
dev-taskselect
</artifactId>
...
...
@@ -402,7 +397,6 @@
</exclusions>
</dependency>
<dependency>
<groupId>
com.tykj.dev
</groupId>
<artifactId>
config
</artifactId>
...
...
@@ -459,6 +453,13 @@
<artifactId>
spring-boot-starter-actuator
</artifactId>
</dependency>
<!-- 借助 Micrometer 对接 Prometheus 监控系统 -->
<dependency>
<groupId>
io.micrometer
</groupId>
<artifactId>
micrometer-registry-prometheus
</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-client -->
<dependency>
<groupId>
de.codecentric
</groupId>
<artifactId>
spring-boot-admin-starter-client
</artifactId>
...
...
dev-union/src/main/resources/application-dev.properties
浏览文件 @
cc5a73e2
spring.application.name
=
device-dev
spring.datasource.url
=
jdbc:mysql://192.168.100.249:3306/device?serverTimezone=Asia/Shanghai&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&useSSL=false
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.username
=
root
spring.datasource.password
=
root
spring.jpa.hibernate.ddl-auto
=
update
#file.path=C:/Users/dengdiyi/Documents/file/
# spring boot admin
spring.boot.admin.client.url
=
http://localhost:8769
management.endpoints.web.exposure.include
=
*
management.endpoint.health.show-details
=
ALWAYS
\ No newline at end of file
dev-union/src/main/resources/application-local.properties
浏览文件 @
cc5a73e2
spring.datasource.url
=
jdbc:mysql://
localhost
:3306/device?serverTimezone=Asia/Shanghai&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&useSSL=false
spring.datasource.url
=
jdbc:mysql://
192.168.100.249
:3306/device?serverTimezone=Asia/Shanghai&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&useSSL=false
spring.datasource.driver-class-name
=
com.mysql.cj.jdbc.Driver
spring.datasource.username
=
root
spring.datasource.password
=
root
file.path
=
C:/Users/dengdiyi/Documents/file/
preview.path
=
http://124.70.145.101:8087/equip/file/
\ No newline at end of file
logging.file
=
./log/equip.log
preview.path
=
http://124.70.145.101:8087/equip/file/
# spring boot admin
spring.boot.admin.client.url
=
http://localhost:8769
\ No newline at end of file
dev-union/src/main/resources/application.properties
浏览文件 @
cc5a73e2
...
...
@@ -17,8 +17,7 @@ preview.path=http://192.168.102.169:8087/file/
useBlockcha
=
true
spring.jpa.hibernate.use-new-id-generator-mappings
=
false
spring.boot.admin.url
=
http://localhost:8081/admin
spring.jackson.serialization.indent_output
=
true
management.endpoints.web.exposure.include
=
"*"
management.endpoints.web.exposure.include
=
*
management.endpoint.health.show-details
=
always
pom.xml
浏览文件 @
cc5a73e2
...
...
@@ -298,7 +298,6 @@
<scope>
test
</scope>
</dependency>
</dependencies>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论