我正在將Java/Spring MVC應用程序移動到Grails。隨着Spring Security的工作,我能夠閱讀幾頁。但是,當我添加cxf-bundle-minimal作爲依賴項時,我開始得到下面的錯誤。Grails依賴問題
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED DEPENDENCIES ::
::::::::::::::::::::::::::::::::::::::::::::::
:: javax.ejb#ejb;3.0: not found ::
::::::::::::::::::::::::::::::::::::::::::::::
異常開始過濾springSecurityFilterChain org.springframework.beans.factory.NoSuchBeanDefinitionException: 沒有名爲 'springSecurityFilterChain' 豆被定義
現在,即使我刪除了依賴錯誤繼續。任何人都知道問題的原因是什麼以及如何解決它?我的依賴列表如下。
dependencies {
runtime 'mysql:mysql-connector-java:5.1.12'
compile('log4j:log4j:1.2.16',
'org.apache.cxf:cxf-bundle-minimal:2.2.9',
'org.springframework:spring-beans:3.0.2.RELEASE',
'org.springframework:spring-context:3.0.2.RELEASE',
'org.springframework:spring-core:3.0.2.RELEASE',
'org.springframework:spring-jdbc:3.0.2.RELEASE',
'org.springframework.security:spring-security-core:3.0.2.RELEASE',
'org.springframework.security:spring-security-config:3.0.2.RELEASE',
'org.springframework.security:spring-security-web:3.0.2.RELEASE')
}