|
|
|
@ -16,19 +16,18 @@
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot Web容器 -->
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot 拦截器 -->
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot 拦截器 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--阿里数据库连接池 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
@ -48,20 +47,14 @@
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- SpringBoot集成thymeleaf模板 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--Shiro核心框架 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-core</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Shiro使用Srping框架 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
@ -75,40 +68,28 @@
|
|
|
|
|
<artifactId>shiro-ehcache</artifactId>
|
|
|
|
|
<version>${shiro.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- thymeleaf模板引擎和shiro框架的整合 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.theborakompanioni</groupId>
|
|
|
|
|
<artifactId>thymeleaf-extras-shiro</artifactId>
|
|
|
|
|
<version>${thymeleaf.extras.shiro.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 解析客户端操作系统、浏览器等 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>eu.bitwalker</groupId>
|
|
|
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
|
|
|
<version>${bitwalker.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 系统模块-->
|
|
|
|
|
|
|
|
|
|
<!-- 系统模块-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-system</artifactId>
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 定时任务-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-quartz</artifactId>
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 代码生成-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
<artifactId>ruoyi-generator</artifactId>
|
|
|
|
|
<version>${ruoyi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|