grails spring-security-core プラグインを変更して、/WEB-INF/applicationContext-security.xml などで定義されている他の Bean を利用させることは可能ですか?
たとえば、スプリングセキュリティの最小限のケースを正常に実行できた人はいますか:
<http>
<http-basic/>
<intercept-url pattern="/**" access="ROLE_ADMIN" />
</http>
<authentication-manager>
<authentication-provider>
<user-service>
<user name="admin" password="pass" authorities="ROLE_ADMIN" />
</user-service>
</authentication-provider>
</authentication-manager>
Grails spring-security-core プラグインをインストールして、grails プラグインがそれをリダイレクトせず、代わりに独自の Bean を使用するようにしますか?
その場合、これを可能にするために、どこでどのように指定しますか?