我正在使用带有 Grails 的 Spring 安全性。我的用户有用户名,它还引用了另一个名为卖方的域对象。
// Every user will usually be associated with a Seller
static belongsTo = [seller: Seller];
在 GSP 中,我可以通过以下方式显示登录用户的用户名:
<sec:ifLoggedIn>Hello <sec:username/> </sec:ifLoggedIn>
但我还想显示来自用户卖家对象的属性。我尝试:
<sec:ifLoggedIn>Hello <sec:username/> <sec:seller.name/> </sec:ifLoggedIn>
但这给出了:
Tag [seller.name] does not exist. No tag library found for namespace: sec
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
有任何想法吗?