这是我的第一个Spring应用程序。我想在浏览器中显示Hello,World。我按照下面的步骤,但我的依赖项出了问题。我正在使用Intellij 1.2017
initial
目录复制到我的文件系统On Intellij:
org.springframework:gs-maven:0.1.0
- > jdk 1.8 - >完成现在我想显示你好,世界!在浏览器中,按照以下步骤进行操作:http://projects.spring.io/spring-boot/
SampleController
<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>
我对maven和依赖关系没有太多经验,因此我试图按字面意思遵循说明。我的步骤可能出现什么问题?
答案 0 :(得分:0)
解释来自 - Mohsan Shakir的评论