Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种方法来更改 Grails 的默认 g:link 行为,但我不知道我必须做什么,扩展一些类,配置一个 bean spring... 有人有什么建议吗?
如果您创建自己的 TagLib 并定义链接 clojure,它将覆盖默认的 grails 链接标记。
class MyTagLib { def link = { attrs, body -> out << 'changing the default grails link' } }