ユーザーが 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/**"/>