cms模块
This commit is contained in:
parent
86ebfe59d9
commit
7b895c1ea1
1
pom.xml
1
pom.xml
|
|
@ -52,6 +52,7 @@
|
|||
<module>ruoyi-exam</module>
|
||||
<module>ruoyi-vip</module>
|
||||
<module>ruoyi-train</module>
|
||||
<module>ruoyi-cms</module>
|
||||
<!--<module>tuoyi-test</module>-->
|
||||
</modules>
|
||||
<packaging>pom</packaging>
|
||||
|
|
|
|||
|
|
@ -62,6 +62,12 @@
|
|||
<artifactId>ruoyi-train</artifactId>
|
||||
<version>${ruoyi.version}</version>
|
||||
</dependency>
|
||||
<!-- 页面展示系统-->
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-cms</artifactId>
|
||||
<version>${ruoyi.version}</version>
|
||||
</dependency>
|
||||
<!-- 测试生成的代码-->
|
||||
<!--<dependency>-->
|
||||
<!--<groupId>com.ruoyi</groupId>-->
|
||||
|
|
|
|||
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>ruoyi</artifactId>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<version>3.1</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>ruoyi-cms</artifactId>
|
||||
|
||||
|
||||
</project>
|
||||
|
|
@ -247,6 +247,8 @@ public class ShiroConfig
|
|||
filterChainDefinitionMap.put("/ruoyi/**", "anon");
|
||||
filterChainDefinitionMap.put("/druid/**", "anon");
|
||||
filterChainDefinitionMap.put("/api/**", "anon");
|
||||
//前端网站展示
|
||||
filterChainDefinitionMap.put("/web/**", "anon");
|
||||
filterChainDefinitionMap.put("/profile/**", "anon");
|
||||
filterChainDefinitionMap.put("/captcha/captchaImage**", "anon");
|
||||
// 退出 logout地址,shiro去清除session
|
||||
|
|
|
|||
Loading…
Reference in New Issue