Spring项目错误现在我正在使用Maven

时间:2012-09-12 18:17:34

标签: java eclipse spring maven spring-security

我开始使用Maven将我的JAR引入我的项目中。我有一个Spring项目,我在eclipse中进入了一个maven项目,但我现在收到了这个错误:

Description Resource    Path    Location    Type
The classes from the spring-security-web jar (or one of its dependencies) are not available. You need these to use <http>: javax.servlet.Filter my-security-context.xml /WebFlowTemplate/src/main/webapp/WEB-INF/spring line 12 Spring Beans Problem

这是我得到它的一行:

<http use-expressions="true">

这是我的my-security-context.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans 
    xmlns="http://www.springframework.org/schema/security"
    xmlns:beans="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
                        http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
                        http://www.springframework.org/schema/security
                        http://www.springframework.org/schema/security/spring-security-3.1.xsd">


    <http use-expressions="true">

        <intercept-url access="hasRole('ROLE_USER')"    pattern="/helloworld**" />
        <intercept-url pattern='/*' access='permitAll' />


        <form-login login-page="/login.jsp"
            authentication-failure-url="/login.jsp" 
            default-target-url="/helloworld" />

        <logout logout-success-url="/" />
    </http>

    <authentication-manager>
        <authentication-provider>
            <user-service>
                <user name="user" password="user" authorities="ROLE_USER" />
            </user-service>

        </authentication-provider>
    </authentication-manager>
</beans:beans>

这是我的pom.xml文件。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.springsource.greenbeans.maven</groupId>
    <artifactId>WebFlowTemplate</artifactId>
    <packaging>war</packaging>
    <version>0.0.1-SNAPSHOT</version>
    <name>WebFlowTemplate Maven Webapp</name>
    <url>http://maven.apache.org</url>
    <dependencies>

        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>3.6.3.Final</version>
        </dependency>

        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-validator</artifactId>
            <version>4.3.0.Final</version>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjtools</artifactId>
            <version>1.6.2</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
            <version>3.1.2.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>3.1.2.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.webflow</groupId>
            <artifactId>spring-webflow</artifactId>
            <version>2.3.1.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-core</artifactId>
            <version>3.1.2.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-web</artifactId>
            <version>3.1.2.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-config</artifactId>
            <version>3.1.2.RELEASE</version>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aop</artifactId>
            <version>3.1.2.RELEASE</version>
        </dependency>


        <dependency>
            <groupId>log4j</groupId>
            <artifactId>log4j</artifactId>
            <version>1.2.17</version>
        </dependency>



    </dependencies>
    <build>
        <finalName>WebFlowTemplate</finalName>
    </build>
</project>

看起来一切正常,但我不想看到这个错误。有人可以提供一些信息。

3 个答案:

答案 0 :(得分:6)

我也尝试了很多解决方案来解决这个问题。 但是当我查看项目的maven依赖项时,我找到了解决方案(我不是指pom.xml - &gt;我的意思是STS软件包资源管理器中的dropDown-view)。

servlet-api没有条目。

在我的pom.xml中放入以下依赖项解决问题:

    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>2.5</version>
    </dependency>

答案 1 :(得分:1)

在项目中添加库“Server Runtime”,他工作正常。

答案 2 :(得分:0)

我发现这个问题有些奇怪:

http://forum.springsource.org/showthread.php?110052-Configuration-problem-spring-security-web-classes-are-not-available-You-need

  

最初我认为我遇到了Spring security 3.1的问题,但是   实际上是因为我使用导入过多的依赖项   行家。

     

只需要进行一些必需的弹簧罐,清洁和重建   项目解决了这个问题,我不再在我的错误中得到错误   应用程序上下文xml文件

同时检查此blog的评论。

  

你正在关注Spring Security 3.1教程,对吗?我建议   做一个mvn clean来清理项目的工作区。然后试试   再次建设项目