我有个问题。
我想添加到Grails 3.0.9 AsynchronousMail:
compile 'org.grails.plugins:asynchronous-mail:1.2'
Gradle 可能安装了这个插件,只是没看到他...
任何人都可以成功进行这样的配置吗?
帮我。
我有个问题。
我想添加到Grails 3.0.9 AsynchronousMail:
compile 'org.grails.plugins:asynchronous-mail:1.2'
Gradle 可能安装了这个插件,只是没看到他...
任何人都可以成功进行这样的配置吗?
帮我。
只需将其包含在您的 build.gradle 中:
dependencies {
compile 'org.grails.plugins:asynchronous-mail:2.0.0.RC2'
}
这里有很好的文档 http://grails.org/plugin/asynchronous-mail
进入你的项目目录。假设它位于 $HOME/projects/myproj。运行插件的安装程序脚本以最初创建配置文件:
cd $HOME/projects/myproj
grails install-asynchronous-mail-config
现在,编辑 $HOME/projects/myproj/grails-app/conf/DefaultAsynchronousMailConfig.groovy
初始默认值应该足以让您入门。
祝你好运!