Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
framework-tools
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit fa7b4424
authored
Jul 03, 2024
by
henry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改配置文件
1 parent
2084f7a2
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
118 additions
and
41 deletions
arch-base/pom.xml
arch-clouds/log/pom.xml
arch-clouds/mybatis/pom.xml
arch-gateway/pom.xml
arch-overall/pom.xml
logs/eadc-architecture_error.log
logs/eadc-architecture_info.log
arch-base/pom.xml
View file @
fa7b442
...
@@ -33,38 +33,27 @@
...
@@ -33,38 +33,27 @@
<artifactId>
spring-cloud-starter-bootstrap
</artifactId>
<artifactId>
spring-cloud-starter-bootstrap
</artifactId>
</dependency>
</dependency>
<dependency>
<!-- <dependency>-->
<groupId>
com.alibaba.cloud
</groupId>
<!-- <groupId>com.alibaba.cloud</groupId>-->
<artifactId>
spring-cloud-starter-alibaba-nacos-discovery
</artifactId>
<!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
</dependency>
<!-- </dependency>-->
<dependency>
<!-- <dependency>-->
<groupId>
com.alibaba.cloud
</groupId>
<!-- <groupId>com.alibaba.cloud</groupId>-->
<artifactId>
spring-cloud-starter-alibaba-nacos-config
</artifactId>
<!-- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>-->
</dependency>
<!-- </dependency>-->
<!--openfeign-->
<!-- <!–openfeign–>-->
<dependency>
<!-- <dependency>-->
<groupId>
org.springframework.cloud
</groupId>
<!-- <groupId>org.springframework.cloud</groupId>-->
<artifactId>
spring-cloud-starter-openfeign
</artifactId>
<!-- <artifactId>spring-cloud-starter-openfeign</artifactId>-->
</dependency>
<!-- </dependency>-->
<!--sentinel依赖-->
<!-- <!–sentinel依赖–>-->
<dependency>
<!-- <dependency>-->
<groupId>
com.alibaba.cloud
</groupId>
<!-- <groupId>com.alibaba.cloud</groupId>-->
<artifactId>
spring-cloud-starter-alibaba-sentinel
</artifactId>
<!-- <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>-->
</dependency>
<!-- </dependency>-->
<dependency>
<groupId>
com.mysql
</groupId>
<artifactId>
mysql-connector-j
</artifactId>
</dependency>
<!-- druid数据源驱动 -->
<dependency>
<groupId>
com.alibaba
</groupId>
<artifactId>
druid-spring-boot-starter
</artifactId>
</dependency>
<!--FTP包-->
<!--FTP包-->
<dependency>
<dependency>
...
...
arch-clouds/log/pom.xml
View file @
fa7b442
...
@@ -20,11 +20,6 @@
...
@@ -20,11 +20,6 @@
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
org.arch
</groupId>
<groupId>
org.arch
</groupId>
<artifactId>
arch-base
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
org.arch
</groupId>
<artifactId>
mybatis
</artifactId>
<artifactId>
mybatis
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<version>
1.0-SNAPSHOT
</version>
</dependency>
</dependency>
...
...
arch-clouds/mybatis/pom.xml
View file @
fa7b442
...
@@ -34,6 +34,17 @@
...
@@ -34,6 +34,17 @@
<artifactId>
mybatis-plus-extension
</artifactId>
<artifactId>
mybatis-plus-extension
</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>
com.mysql
</groupId>
<artifactId>
mysql-connector-j
</artifactId>
</dependency>
<!--<!– druid数据源驱动 –>-->
<dependency>
<groupId>
com.alibaba
</groupId>
<artifactId>
druid-spring-boot-starter
</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter -->
<dependency>
<dependency>
<groupId>
com.github.pagehelper
</groupId>
<groupId>
com.github.pagehelper
</groupId>
...
...
arch-gateway/pom.xml
View file @
fa7b442
...
@@ -19,19 +19,40 @@
...
@@ -19,19 +19,40 @@
<dependencies>
<dependencies>
<!--(nacos统一配置中心管理依赖)-->
<!--(nacos统一配置中心管理依赖)-->
<dependency>
<dependency>
<groupId>
org.arch
</groupId>
<groupId>
com.alibaba.cloud
</groupId>
<artifactId>
nacos
</artifactId>
<artifactId>
spring-cloud-starter-alibaba-nacos-config
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
</dependency>
<dependency>
<groupId>
com.alibaba.cloud
</groupId>
<artifactId>
spring-cloud-starter-alibaba-nacos-discovery
</artifactId>
</dependency>
<dependency>
<groupId>
com.github.xiaoymin
</groupId>
<artifactId>
knife4j-gateway-spring-boot-starter
</artifactId>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-loadbalancer
</artifactId>
<artifactId>
spring-cloud-starter-loadbalancer
</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-bootstrap
</artifactId>
</dependency>
<!--gateway依赖-->
<!--gateway依赖-->
<dependency>
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-gateway
</artifactId>
<artifactId>
spring-cloud-starter-gateway
</artifactId>
</dependency>
</dependency>
<!--openfeign-->
<dependency>
<groupId>
org.springframework.cloud
</groupId>
<artifactId>
spring-cloud-starter-openfeign
</artifactId>
</dependency>
<!--jwt-->
<!--jwt-->
<dependency>
<dependency>
<groupId>
com.auth0
</groupId>
<groupId>
com.auth0
</groupId>
...
@@ -56,7 +77,6 @@
...
@@ -56,7 +77,6 @@
<groupId>
org.jsoup
</groupId>
<groupId>
org.jsoup
</groupId>
<artifactId>
jsoup
</artifactId>
<artifactId>
jsoup
</artifactId>
</dependency>
</dependency>
<!--SM4-CBC加密需要-->
<!--SM4-CBC加密需要-->
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
<!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
<dependency>
<dependency>
...
...
arch-overall/pom.xml
View file @
fa7b442
...
@@ -31,6 +31,11 @@
...
@@ -31,6 +31,11 @@
<artifactId>
log
</artifactId>
<artifactId>
log
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<version>
1.0-SNAPSHOT
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.arch
</groupId>
<artifactId>
nacos
</artifactId>
<version>
1.0-SNAPSHOT
</version>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
...
...
logs/eadc-architecture_error.log
View file @
fa7b442
...
@@ -416,3 +416,60 @@ Caused by: java.util.concurrent.CompletionException: org.redisson.client.RedisEx
...
@@ -416,3 +416,60 @@ Caused by: java.util.concurrent.CompletionException: org.redisson.client.RedisEx
... 4 common frames omitted
... 4 common frames omitted
Caused by: org.redisson.client.RedisException: ERR invalid password. channel: [id: 0x4fc373f1, L:/192.168.0.100:63864 - R:192.168.0.210/192.168.0.210:16379] command: (AUTH), params: (password masked)
Caused by: org.redisson.client.RedisException: ERR invalid password. channel: [id: 0x4fc373f1, L:/192.168.0.100:63864 - R:192.168.0.210/192.168.0.210:16379] command: (AUTH), params: (password masked)
... 23 common frames omitted
... 23 common frames omitted
2024-07-03 10:49:51 [main] ERROR o.s.b.diagnostics.LoggingFailureAnalysisReporter:40 -
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (the profiles dev are currently active).
2024-07-03 10:50:25 [main] ERROR o.s.b.diagnostics.LoggingFailureAnalysisReporter:40 -
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (the profiles dev are currently active).
2024-07-03 10:52:36 [main] ERROR o.s.b.diagnostics.LoggingFailureAnalysisReporter:40 -
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (the profiles dev are currently active).
logs/eadc-architecture_info.log
View file @
fa7b442
This diff could not be displayed because it is too large.
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment