瀏覽代碼

update

master
Anna Ho 3 年之前
父節點
當前提交
5998b23112
共有 8 個檔案被更改,包括 5 行新增0 行删除
  1. 二進制
      .gradle/5.6.3/executionHistory/executionHistory.bin
  2. 二進制
      .gradle/5.6.3/executionHistory/executionHistory.lock
  3. 二進制
      .gradle/5.6.3/fileHashes/fileHashes.bin
  4. 二進制
      .gradle/5.6.3/fileHashes/fileHashes.lock
  5. 二進制
      .gradle/5.6.3/javaCompile/javaCompile.lock
  6. 二進制
      .gradle/buildOutputCleanup/buildOutputCleanup.lock
  7. +1
    -0
      src/main/java/com/ffii/core/security/web/authentication/JsonAuthenticationFailureHandler.java
  8. +4
    -0
      src/main/webapp/WEB-INF/root/home.ftl

二進制
.gradle/5.6.3/executionHistory/executionHistory.bin 查看文件


二進制
.gradle/5.6.3/executionHistory/executionHistory.lock 查看文件


二進制
.gradle/5.6.3/fileHashes/fileHashes.bin 查看文件


二進制
.gradle/5.6.3/fileHashes/fileHashes.lock 查看文件


二進制
.gradle/5.6.3/javaCompile/javaCompile.lock 查看文件


二進制
.gradle/buildOutputCleanup/buildOutputCleanup.lock 查看文件


+ 1
- 0
src/main/java/com/ffii/core/security/web/authentication/JsonAuthenticationFailureHandler.java 查看文件

@@ -58,6 +58,7 @@ public class JsonAuthenticationFailureHandler extends SimpleUrlAuthenticationFai
public void onAuthenticationFailure(HttpServletRequest request, HttpServletResponse response, AuthenticationException exception)
throws IOException, ServletException {

logger.info("Authentication Failure: " + exception.getMessage() + " [" + request.getRequestURL() + "]");
logger.info("Authentication Failure: " + exception.getMessage() + " [" + request.getRemoteAddr() + "]");

String username = StringUtils.left(ServletRequestUtils.getStringParameter(request, "username"), 32);


+ 4
- 0
src/main/webapp/WEB-INF/root/home.ftl 查看文件

@@ -24,6 +24,9 @@
-ms-content-zooming: none;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="<@spring.url "/resources/js/onscan.min.js" />"></script>

<#-- Ext JS -->
<script src="<@spring.url "/resources/ext-6.5.3/ext-all.js?jsv=${jsv}" />"></script>
@@ -259,6 +262,7 @@ window.onerror = function (msg, url, lineNo, columnNo, error) {
}
};


<#--
Ext.application({
extend: 'Main.Application',


Loading…
取消
儲存