TransactionManager error in grails app after installing spring-security-core -
TransactionManager error in grails app after installing spring-security-core -
i've been struggling bit getting spring security core integrated application , working properly. after digging, found lot of guidance, have nail wall. i'm @ place accounts exist, roles exist, passwords beingness encoded properly, logins failing every account.
i next along debugging advice given in this question , turned issue different 1 answered there, , haven't been able find answers when googling. might due newness framework.
i added config.groovy burt had suggested:
grails.plugin.springsecurity.onabstractauthenticationfailureevent = { e, appctx -> println "\nerror auth failed user $e.authentication.name: $e.exception.message\n" }
and tried 1 time again log application. again, received "sorry, not able find user username , password" error. when looked @ console, having enabled logging via log4j directed in above question, found this:
error auth failed user bretw: no transactionmanager bean configured
the total trace here: http://pastebin.com/c2sklgxz
i haven't configured transaction management myself; that's required spring security core, , if so, there documentation how set i'm not seeing? i'm using mongodb database, i'm not using hibernate.
i'm running grails 2.3.4 , mongodb 1.3.0, spring-security-core 2.0-rc2.
1: with specified username getting 'sorry, not able find user username , password.' message when logging int ""
grails spring-security
Comments
Post a Comment