Skip to content

Commit

Permalink
升级Spring Boot 2.5.0后,Idea启动正常。但jar启动报错java.lang.IllegalStateException…
Browse files Browse the repository at this point in the history
…: No subdirectories found for mandatory directory location 'file:./config/*/'.原因为Spring Boot的问题,待修复,相关Issues:spring-projects/spring-boot#26627
  • Loading branch information
lWoHvYe committed May 22, 2021
1 parent 2933194 commit 257f1d6
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -13,7 +13,7 @@


后台运行jar
nohup java --add-opens java.base/java.lang=ALL-UNNAMED -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 -jar eladmin-starter-2.6.9.jar >nohup.out 2>&1 &
nohup java --add-opens java.base/java.lang=ALL-UNNAMED -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005 -jar eladmin-starter-2.6.10.jar >nohup.out 2>&1 &

#### 项目简介
一个基于 Spring Boot 2.4.2 、 Spring Boot Jpa、 JWT、Spring Security、Redis、ShardingSphere、Vue的前后端分离的后台管理系统
Expand Down
2 changes: 1 addition & 1 deletion eladmin-common/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>eladmin</artifactId>
<groupId>com.lwohvye</groupId>
<version>2.6.9</version>
<version>2.6.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions eladmin-generator/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>eladmin</artifactId>
<groupId>com.lwohvye</groupId>
<version>2.6.9</version>
<version>2.6.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>com.lwohvye</groupId>
<artifactId>eladmin-common</artifactId>
<version>2.6.9</version>
<version>2.6.10</version>
</dependency>

<!--模板引擎-->
Expand Down
4 changes: 2 additions & 2 deletions eladmin-logging/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>eladmin</artifactId>
<groupId>com.lwohvye</groupId>
<version>2.6.9</version>
<version>2.6.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -16,7 +16,7 @@
<dependency>
<groupId>com.lwohvye</groupId>
<artifactId>eladmin-common</artifactId>
<version>2.6.9</version>
<version>2.6.10</version>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions eladmin-search/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>eladmin</artifactId>
<groupId>com.lwohvye</groupId>
<version>2.6.9</version>
<version>2.6.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -16,7 +16,7 @@
<dependency>
<groupId>com.lwohvye</groupId>
<artifactId>eladmin-system</artifactId>
<version>2.6.9</version>
<version>2.6.10</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
Expand Down
4 changes: 2 additions & 2 deletions eladmin-starter/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>eladmin</artifactId>
<groupId>com.lwohvye</groupId>
<version>2.6.9</version>
<version>2.6.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -16,7 +16,7 @@
<dependency>
<groupId>com.lwohvye</groupId>
<artifactId>eladmin-system</artifactId>
<version>2.6.9</version>
<version>2.6.10</version>
</dependency>
<!--分库分表中间件-->
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions eladmin-system/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>eladmin</artifactId>
<groupId>com.lwohvye</groupId>
<version>2.6.9</version>
<version>2.6.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>com.lwohvye</groupId>
<artifactId>eladmin-generator</artifactId>
<version>2.6.9</version>
<version>2.6.10</version>
<exclusions>
<exclusion>
<groupId>com.lwohvye</groupId>
Expand All @@ -36,7 +36,7 @@
<dependency>
<groupId>com.lwohvye</groupId>
<artifactId>eladmin-tools</artifactId>
<version>2.6.9</version>
<version>2.6.10</version>
</dependency>

<!-- Spring boot websocket -->
Expand Down
4 changes: 2 additions & 2 deletions eladmin-tools/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>eladmin</artifactId>
<groupId>com.lwohvye</groupId>
<version>2.6.9</version>
<version>2.6.10</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>com.lwohvye</groupId>
<artifactId>eladmin-logging</artifactId>
<version>2.6.9</version>
<version>2.6.10</version>
</dependency>

<!--邮件依赖-->
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -7,7 +7,7 @@
<groupId>com.lwohvye</groupId>
<artifactId>eladmin</artifactId>
<packaging>pom</packaging>
<version>2.6.9</version>
<version>2.6.10</version>

<modules>
<module>eladmin-common</module>
Expand Down

0 comments on commit 257f1d6

Please sign in to comment.