使用Intellij 17.1.3,Grails 3.2.9,Gradle 3.4.1
在Grails application.yml文件中,我看到很多警告:
无法解析配置属性......
例如:“cache:”下的所有属性都会显示警告。
hibernate:
cache:
queries: false
use_second_level_cache: true
use_query_cache: false
region.factory_class: org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory
这些没有警告:
spring:
main:
banner-mode: "off"
groovy:
template:
check-template-location: false
我的同事在他的Mac上没有在同一个项目中看到这些。
此外,我在build.gradle中看到了一些类似的警告:
mavenWeb,pom和asNode都显示“无法解析符号”
publishing.publications {
mavenWeb(MavenPublication) {
pom.withXml {
def pomNode = asNode()
一切“似乎”工作正常,但我不喜欢看到所有这些警告。是什么导致他们?