renqianlong 2 лет назад
Родитель
Сommit
5929f9ed26

+ 18 - 0
zzbusiness-common/pom.xml

@@ -84,6 +84,24 @@
             <groupId>javax.servlet</groupId>
             <artifactId>javax.servlet-api</artifactId>
         </dependency>
+        <dependency>
+            <groupId>repository.com.github.pagehelper</groupId>
+            <artifactId>pagehelper</artifactId>
+            <version>5.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>jakarta.validation</groupId>
+            <artifactId>jakarta.validation-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-codec</groupId>
+            <artifactId>commons-codec</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>repository.com.google.code.gson</groupId>
+            <artifactId>gson</artifactId>
+            <version>2.9.1</version>
+        </dependency>
 
     </dependencies>
 

+ 1 - 0
zzbusiness-common/src/main/java/org/zhongzheng/common/filter/XssFilter.java

@@ -2,6 +2,7 @@ package org.zhongzheng.common.filter;
 
 import cn.hutool.core.util.StrUtil;
 
+import javax.servlet.*;
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import java.io.IOException;