1

Profile というドメイン クラスがあります。次のコードでそのプロパティにアクセスしようとしました:

Profile p = new Profile()
// doing some changes
p.name = 'Larry'
//....
p.save(flush:true)
// then I print out the properties, and this line of code raises warning.
print p.properties

次に、次の警告メッセージが表示されます。

WARN  security.Security  - An attempt was made to use the grailsSecurity bean, but there is no security bridge implementation defined. You must install a security plugin and/or provide a grailsSecurityBridge bean.

私は春のセキュリティプラグインを持っています。したがって、このセキュリティ問題の意味についてはよくわかりません。別のセキュリティ プラグインですか?

この問題に関連する情報が見つかりません。誰か助けてくれませんか?ありがとうございました!

4

1 に答える 1