sk-matrix-service 项目 模块依赖修正

This commit is contained in:
Shikong 2023-05-07 22:53:11 +08:00
parent 01433dea8f
commit 9c8f7fcfc5
3 changed files with 19 additions and 4 deletions

View File

@ -23,8 +23,8 @@
<module name="starter" />
<module name="auth" />
<module name="orm" />
<module name="services" />
<module name="api" />
<module name="services" />
<module name="casbin" />
</profile>
</annotationProcessing>

View File

@ -30,6 +30,16 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
</dependency>
<!--编译时创建候选对象的静态列表来提高大型应用程序的启动性能 -->
<dependency>
<groupId>org.springframework</groupId>
@ -47,6 +57,11 @@
<groupId>org.mapstruct</groupId>
<artifactId>mapstruct</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
<build>

View File

@ -1,8 +1,8 @@
package cn.skcks.matrix.v2.interceptor;
import cn.skcks.matrix.annotation.web.auth.Auth;
import cn.skcks.matrix.annotation.web.auth.UnAuth;
import cn.skcks.matrix.handler.AuthHandler;
import cn.skcks.matrix.v2.annotation.web.auth.Auth;
import cn.skcks.matrix.v2.annotation.web.auth.UnAuth;
import cn.skcks.matrix.v2.handler.AuthHandler;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import lombok.extern.slf4j.Slf4j;