Intellij上的Spring Hello World Web App

时间:2017-04-07 07:40:38

标签: spring intellij-idea spring-boot jboss

这是我的第一个Spring应用程序。我想在浏览器中显示Hello,World。我按照下面的步骤,但我的依赖项出了问题。我正在使用Intellij 1.2017

On Intellij:

  • 导入项目
  • 选择../initial/pom.xml
  • 下一步 - >已选择org.springframework:gs-maven:0.1.0 - > jdk 1.8 - >完成
  • run:一切正常到此为止。

现在我想显示你好,世界!在浏览器中,按照以下步骤进行操作:http://projects.spring.io/spring-boot/

  • 添加了课程SampleController
  • 修改后的pom.xml如下:
<modelVersion>4.0.0</modelVersion>
    <groupId>org.springframework</groupId>
    <artifactId>gs-maven</artifactId>
    <packaging>jar</packaging>
    <version>0.1.0</version>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.2.RELEASE</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-shade-plugin</artifactId>
                <version>2.1</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <transformers>
                                <transformer
                                    implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                    <mainClass>hello.HelloWorld</mainClass>
                                </transformer>
                            </transformers>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
  • 右键单击项目,添加框架支持 - &gt;添加弹簧
  • 获取:无法解析symbole启动,并且:无法解析symbole EnableAutoConfiguration

enter image description here

我对maven和依赖关系没有太多经验,因此我试图按字面意思遵循说明。我的步骤可能出现什么问题?

1 个答案:

答案 0 :(得分:0)

解释来自 - Mohsan Shakir的评论

  1. 点击“查看”并启用“工具按钮”。
  2. 在右侧面板上点击“Maven Projects”
  3. 添加(通过单击+)项目(找到pom文件)。
  4. 点击maven面板上的最左边的按钮“Reimport All ...”