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 2.3.8 我正在使用 -org.yaml.snakeyaml.Yaml类。在源代码中自动完成期间,GGTS 工作区查找包没有任何问题。但是在运行应用程序时我得到
org.yaml.snakeyaml.Yaml
java.lang.ClassNotFoundException:org.yaml.snakeyaml.Yaml
我的假设是这是核心 Grails 的一部分,并且 jar 将自动包含在内。我是否必须在 BuildConfig.groovy 中配置和添加 jar 或依赖项?
Grails 3 使用 Yaml 并将其包含为依赖项,但在 3.0 之前它没有,因此您需要像配置中的任何第三方依赖项一样配置它BuildConfig.groovy,例如
BuildConfig.groovy
dependencies { ... compile 'org.yaml:snakeyaml:1.14' }