0
springSecurityService.currentUserにアクセスしようとすると、コントロールの次のコードスニペットでnullポインタ例外が発生します。私はdef springSecurityServiceが自動的にサービスを挿入することを期待しています。何が欠けていますか?springSecurityServiceの注入が機能しません
@Transactional(readOnly = true)
@Secured('ROLE_USER')
class TaskController {
static allowedMethods = [save: "POST", update: "PUT", delete: "DELETE"]
def index(Integer max) {
params.max = Math.min(max ?: 10, 100)
def springSecurityService
def user = springSecurityService.currentUser