Browse Source

调整包结构

reghao 4 months ago
parent
commit
8182fd669b

+ 1 - 1
jdk/src/main/java/cn/reghao/jutil/jdk/web/Page.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/db/Page.java

@@ -1,4 +1,4 @@
-package cn.reghao.jutil.jdk.web;
+package cn.reghao.jutil.jdk.web.db;
 
 
 /**
 /**
  * @author reghao
  * @author reghao

+ 1 - 1
jdk/src/main/java/cn/reghao/jutil/jdk/web/PageBound.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/db/PageBound.java

@@ -1,4 +1,4 @@
-package cn.reghao.jutil.jdk.web;
+package cn.reghao.jutil.jdk.web.db;
 
 
 /**
 /**
  * @author reghao
  * @author reghao

+ 1 - 1
jdk/src/main/java/cn/reghao/jutil/jdk/web/PageList.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/db/PageList.java

@@ -1,4 +1,4 @@
-package cn.reghao.jutil.jdk.web;
+package cn.reghao.jutil.jdk.web.db;
 
 
 import java.io.Serializable;
 import java.io.Serializable;
 import java.util.Collections;
 import java.util.Collections;

+ 1 - 1
jdk/src/main/java/cn/reghao/jutil/jdk/web/PageParam.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/db/PageParam.java

@@ -1,4 +1,4 @@
-package cn.reghao.jutil.jdk.web;
+package cn.reghao.jutil.jdk.web.db;
 
 
 /**
 /**
  * @author reghao
  * @author reghao

+ 1 - 1
jdk/src/main/java/cn/reghao/jutil/jdk/web/AppLog.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/log/AppLog.java

@@ -1,4 +1,4 @@
-package cn.reghao.jutil.jdk.web;
+package cn.reghao.jutil.jdk.web.log;
 
 
 import java.io.Serializable;
 import java.io.Serializable;
 
 

+ 1 - 1
jdk/src/main/java/cn/reghao/jutil/jdk/web/GatewayLog.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/log/GatewayLog.java

@@ -1,4 +1,4 @@
-package cn.reghao.jutil.jdk.web;
+package cn.reghao.jutil.jdk.web.log;
 
 
 import java.io.Serializable;
 import java.io.Serializable;
 import java.util.Map;
 import java.util.Map;

+ 1 - 1
web/src/main/java/cn/reghao/jutil/web/log/NginxLog.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/log/NginxLog.java

@@ -1,4 +1,4 @@
-package cn.reghao.jutil.web.log;
+package cn.reghao.jutil.jdk.web.log;
 
 
 import com.google.gson.annotations.SerializedName;
 import com.google.gson.annotations.SerializedName;
 
 

+ 2 - 2
jdk/src/main/java/cn/reghao/jutil/jdk/web/Result.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/result/Result.java

@@ -1,8 +1,8 @@
-package cn.reghao.jutil.jdk.web;
+package cn.reghao.jutil.jdk.web.result;
 
 
 import java.io.Serializable;
 import java.io.Serializable;
 
 
-import static cn.reghao.jutil.jdk.web.ResultStatus.*;
+import static cn.reghao.jutil.jdk.web.result.ResultStatus.*;
 
 
 
 
 /**
 /**

+ 1 - 1
jdk/src/main/java/cn/reghao/jutil/jdk/web/ResultStatus.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/result/ResultStatus.java

@@ -1,4 +1,4 @@
-package cn.reghao.jutil.jdk.web;
+package cn.reghao.jutil.jdk.web.result;
 
 
 /**
 /**
  * 结果状态
  * 结果状态

+ 1 - 1
jdk/src/main/java/cn/reghao/jutil/jdk/web/WebResult.java → jdk/src/main/java/cn/reghao/jutil/jdk/web/result/WebResult.java

@@ -1,4 +1,4 @@
-package cn.reghao.jutil.jdk.web;
+package cn.reghao.jutil.jdk.web.result;
 
 
 import cn.reghao.jutil.jdk.serializer.JsonConverter;
 import cn.reghao.jutil.jdk.serializer.JsonConverter;
 
 

+ 1 - 1
web/src/main/java/cn/reghao/jutil/web/ServletUtil.java

@@ -1,7 +1,7 @@
 package cn.reghao.jutil.web;
 package cn.reghao.jutil.web;
 
 
 import cn.reghao.jutil.jdk.serializer.JsonConverter;
 import cn.reghao.jutil.jdk.serializer.JsonConverter;
-import cn.reghao.jutil.jdk.web.GatewayLog;
+import cn.reghao.jutil.jdk.web.log.GatewayLog;
 import cn.reghao.jutil.jdk.http.HeaderNames;
 import cn.reghao.jutil.jdk.http.HeaderNames;
 import org.springframework.util.StringUtils;
 import org.springframework.util.StringUtils;
 import org.springframework.web.context.request.RequestAttributes;
 import org.springframework.web.context.request.RequestAttributes;

+ 2 - 2
web/src/main/java/cn/reghao/jutil/web/WebResult.java

@@ -1,8 +1,8 @@
 package cn.reghao.jutil.web;
 package cn.reghao.jutil.web;
 
 
 import cn.reghao.jutil.jdk.http.HeaderNames;
 import cn.reghao.jutil.jdk.http.HeaderNames;
-import cn.reghao.jutil.jdk.web.Result;
-import cn.reghao.jutil.jdk.web.ResultStatus;
+import cn.reghao.jutil.jdk.web.result.Result;
+import cn.reghao.jutil.jdk.web.result.ResultStatus;
 import cn.reghao.jutil.jdk.serializer.JsonConverter;
 import cn.reghao.jutil.jdk.serializer.JsonConverter;
 
 
 /**
 /**