記錄一下一些坑html
Grails3.2-
版能夠直接在domain
中注入service
,在Grails3.2+
中默認關閉了自動注入功能在
application.groovy
中配置全局映射,若沒有此腳本需新建app
grails.gorm.default.mapping = {
autowire true
}
複製代碼
在須要注入
bean
的domain
中添加映射dom
static mapping = {
autowire true
}
複製代碼
在
application.yml
中新增或修改配置spa
---
grails:
gorm:
autowire: true
複製代碼