使用源代码构建的spring依赖项创建maven项目

时间:2015-12-01 12:26:35

标签: eclipse spring maven

我想研究一下springframework的实现。所以我跟着链接:

building springframework from source

通过这个链接,我能够构建各种弹簧模块。我成功地在我的eclipse工作区中导入了这些项目。 为了实现代码,我在同一个Eclipse工作区中创建了一个基于maven的spring MVC项目,我在其中导入了spring框架项目。我将spring项目作为构建路径依赖项添加到MVC项目。但是当我执行(clean install -e)pom时。对于MVC项目的xml,我的代码中显示的所有springframework引用都显示了编译问题,比如包不存在,符号找不到等等。这是我简单的java代码:

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class Home {

    String message = "Welcome to your 1st Maven Spring project !";  

    @RequestMapping("/hello")  
    public ModelAndView showMessage() {  
        System.out.println("from controller");  
        return new ModelAndView("hello", "message", message);  
    }  

}

可能是什么原因?

<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>com.manish.springrestful</groupId>
<artifactId>SpringRestful</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>SpringRestful Maven Webapp</name>
<url>http://maven.apache.org</url>

<dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
</dependencies>
<build>
    <finalName>SpringRestful</finalName>
    <plugins>
        <plugin>
            <groupId>org.apache.tomcat.maven</groupId>
            <artifactId>tomcat8-maven-plugin</artifactId>
            <version>2.1</version>
            <configuration>
                <url>http://localhost:8080/manager/text</url>
                <server>my-tomcat</server>
                <path>/SpringRestful</path>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.0</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>
    </plugins>
</build>

1 个答案:

答案 0 :(得分:0)

pom.xml中添加所需的maven Spring框架依赖项(来自maven存储库),而不是在项目的构建路径中配置它。