RuoYi 3 gadi atpakaļ
vecāks
revīzija
6ca7870393

+ 6 - 8
ruoyi-common/src/main/java/com/ruoyi/common/filter/RepeatedlyRequestWrapper.java

@@ -38,12 +38,9 @@ public class RepeatedlyRequestWrapper extends HttpServletRequestWrapper
     @Override
     public ServletInputStream getInputStream() throws IOException
     {
-
         final ByteArrayInputStream bais = new ByteArrayInputStream(body);
-
         return new ServletInputStream()
         {
-
             @Override
             public int read() throws IOException
             {
@@ -51,6 +48,12 @@ public class RepeatedlyRequestWrapper extends HttpServletRequestWrapper
             }
 
             @Override
+            public int available() throws IOException
+            {
+                return body.length;
+            }
+
+            @Override
             public boolean isFinished()
             {
                 return false;
@@ -67,11 +70,6 @@ public class RepeatedlyRequestWrapper extends HttpServletRequestWrapper
             {
 
             }
-
-            @Override
-            public int available() throws IOException {
-                return body.length;
-            }
         };
     }
 }

+ 1 - 1
ruoyi-common/src/main/java/com/ruoyi/common/utils/StringUtils.java

@@ -312,7 +312,7 @@ public class StringUtils extends org.apache.commons.lang3.StringUtils
     }
 
     /**
-     * 下划线转驼峰命名
+     * 驼峰转下划线命名
      */
     public static String toUnderScoreCase(String str)
     {

+ 1 - 1
ruoyi-common/src/main/java/com/ruoyi/common/utils/html/EscapeUtil.java

@@ -22,7 +22,7 @@ public class EscapeUtil
 
         // special HTML characters
         TEXT['\''] = "'".toCharArray(); // 单引号
-        TEXT['"'] = """.toCharArray(); // 引号
+        TEXT['"'] = """.toCharArray(); // 引号
         TEXT['&'] = "&".toCharArray(); // &符
         TEXT['<'] = "&#60;".toCharArray(); // 小于号
         TEXT['>'] = "&#62;".toCharArray(); // 大于号