gpt4 book ai didi

grails - 安装spring-security-core grails插件后,如何使IDEA了解jar文件?

转载 作者:行者123 更新时间:2023-12-02 13:50:13 24 4
gpt4 key购买 nike

我已经在grails项目中安装了spring-security-core,但是由于某种原因,IDEA并没有自动选择jar文件。我可以使用grails命令行部署应用程序并运行测试,但是... IDEA仍然会显示混乱的行。安装插件后,有没有办法让IDEA自动拾取jar?

最佳答案

我不是这个问题的真正根源是100%。据我所知,IntelliJ解析插件内部的BuildConfig.groovy以配置依赖项。看来,它没有拾取自动生成的dependencies.groovy。打包的spring-security-core插件仅包含dependencies.groovy,而没有BuildConfig.groovy。

我已将以下代码段添加到应用程序的BuildConfig.groovy中

dependencies {
compile('org.springframework.security:org.springframework.security.core:3.0.2.RELEASE') {
excludes 'com.springsource.org.aopalliance',
'com.springsource.org.apache.commons.logging',
'org.springframework.beans',
'org.springframework.context',
'org.springframework.core'
}

compile('org.springframework.security:org.springframework.security.web:3.0.2.RELEASE') {
excludes 'com.springsource.javax.servlet',
'com.springsource.org.aopalliance',
'com.springsource.org.apache.commons.logging',
'org.springframework.aop',
'org.springframework.beans',
'org.springframework.context',
'org.springframework.core',
'org.springframework.web'
}
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

// runtime 'mysql:mysql-connector-java:5.1.5'
}

有了这个,IntelliJ就知道了Spring Security jar 。

关于grails - 安装spring-security-core grails插件后,如何使IDEA了解jar文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2918827/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com