我有一个名为 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.
我确实有一个弹簧安全插件。所以我不太确定这个安全问题的含义。不同的安全插件?
我找不到与此问题相关的任何信息。有人可以帮我吗?谢谢!