是否可以使用切入點保護我的@Controller類?我嘗試過:Spring Security/AspectJ切入點
<global-method-security pre-post-annotations="enabled">
<!-- Block anything ending with the word 'Controller'-->
<protect-pointcut expression="execution(* my.pkg.*Controller.*(..))" access="NON_EXISTANT_ROLE"/>
</global-method-security>
從理論上講,我永遠無法擊中控制器,因爲任何用戶都不存在該角色。但是,控制器運行良好。
您使用的是哪種版本的彈簧安全? – Ritesh
我使用的是3.0.7版本 – user973479
我在3.0.5之前有過這個問題。還要確保在控制器上下文中存在全局方法安全性。 – Ritesh