build: 升级shiro版本

(cherry picked from commit 26df392913)
This commit is contained in:
CaptainB 2022-10-19 10:26:04 +08:00
parent ac9efae8ef
commit 2949a750cc
4 changed files with 10 additions and 2 deletions

View File

@ -20,7 +20,7 @@
<!-- 第三方不包统一版本如果不指定Spring 会为我们选择匹配的版本 --> <!-- 第三方不包统一版本如果不指定Spring 会为我们选择匹配的版本 -->
<dubbo.version>2.7.15</dubbo.version> <dubbo.version>2.7.15</dubbo.version>
<flyway.version>7.15.0</flyway.version> <flyway.version>7.15.0</flyway.version>
<shiro.version>1.9.1</shiro.version> <shiro.version>1.10.0</shiro.version>
<mssql-jdbc.version>7.4.1.jre8</mssql-jdbc.version> <mssql-jdbc.version>7.4.1.jre8</mssql-jdbc.version>
<postgresql.version>42.3.2</postgresql.version> <postgresql.version>42.3.2</postgresql.version>
<java-websocket.version>1.5.3</java-websocket.version> <java-websocket.version>1.5.3</java-websocket.version>
@ -127,7 +127,7 @@
<dependency> <dependency>
<groupId>org.apache.shiro</groupId> <groupId>org.apache.shiro</groupId>
<artifactId>shiro-spring-boot-starter</artifactId> <artifactId>shiro-spring-boot-web-starter</artifactId>
<version>${shiro.version}</version> <version>${shiro.version}</version>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -18,6 +18,7 @@ public class ShiroUtils {
filterChainDefinitionMap.put("/resource/md/get/**", "anon"); filterChainDefinitionMap.put("/resource/md/get/**", "anon");
filterChainDefinitionMap.put("/resource/ui/get/**", "anon"); filterChainDefinitionMap.put("/resource/ui/get/**", "anon");
filterChainDefinitionMap.put("/*.worker.js", "anon"); filterChainDefinitionMap.put("/*.worker.js", "anon");
filterChainDefinitionMap.put("/*.html", "anon");
filterChainDefinitionMap.put("/login", "anon"); filterChainDefinitionMap.put("/login", "anon");
filterChainDefinitionMap.put("/signin", "anon"); filterChainDefinitionMap.put("/signin", "anon");
filterChainDefinitionMap.put("/ldap/signin", "anon"); filterChainDefinitionMap.put("/ldap/signin", "anon");

View File

@ -10,6 +10,8 @@
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<packaging>pom</packaging>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>frontend</artifactId> <artifactId>frontend</artifactId>

View File

@ -73,6 +73,11 @@ module.exports = {
} }
}, },
}, },
css: {
extract: {
ignoreOrder: true,
}
},
chainWebpack: config => { chainWebpack: config => {
// svg rule loader // svg rule loader
config.module config.module