ignored Security annotations in spring mvc
问题 I'm trying to configure spring secure annotations, I already managed to set spring security configuration in xml(configured by intercept-url elements), but now I'm want to use security annotations in my beans. But secured annotation is totaly ignored when try to access secured controller method without logging. Here is my controller bean: package com.bill.controllers; import org.springframework.security.access.annotation.Secured; import org.springframework.stereotype.Controller; import org