Skip to content

Commit

Permalink
[spring] Update legacy statics to method check
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Sep 14, 2024
1 parent 676a6ec commit b497cce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
http://www.springframework.org/schema/security https://www.springframework.org/schema/security/spring-security.xsd">

<sec:http auto-config="true">
<sec:intercept-url pattern="/login.jsp" access="IS_AUTHENTICATED_ANONYMOUSLY" />
<sec:intercept-url pattern="/**" access="IS_AUTHENTICATED_FULLY" />
<sec:intercept-url pattern="/login.jsp" access="isAnonymous()" />
<sec:intercept-url pattern="/**" access="isFullyAuthenticated()" />
<sec:form-login login-page="/login.jsp" login-processing-url="/j_spring_security_check"
default-target-url="/index.jsp" authentication-failure-url="/login.jsp?login_error=1"
username-parameter="j_username" password-parameter="j_password" />
Expand Down

0 comments on commit b497cce

Please sign in to comment.