We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grails版本: 4.0.4
项目中引入quartz插件:
compile 'org.grails.plugins:quartz:2.0.13'
启动报错:
Caused by: java.lang.NoClassDefFoundError: org/quartz/JobExecutionContext
解决:
compile("org.quartz-scheduler:quartz:2.2.3") { exclude group: 'slf4j-api', module: 'c3p0' } compile ('org.grails.plugins:quartz:2.0.13')
参考grails/grails-quartz#107
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Grails版本: 4.0.4
项目中引入quartz插件:
启动报错:
解决:
参考grails/grails-quartz#107
The text was updated successfully, but these errors were encountered: