有没有办法阻止用户更改 Spring Security 框架中的 applicationContext-security.xml 以便他无法更改应用程序定义的拦截 URL。
<intercept-url access="hasRole('ROLE_ADMIN')" pattern="/choices/**"/>
<intercept-url access="hasAnyRole('ROLE_SYSADMIN')" pattern="/departments/**"/>
<intercept-url access="hasAnyRole('ROLE_SYSADMIN')" pattern="/employees/**"/>