标签:应用 control end http mirror ati cal jdk1.8 toc
IDE使用IDEA更加方便些,对本人来说eclipse更为方便些(可以下载相关的STD插件),这里使用最原始的创建maven工程的方式创建。
环境:
Maven的配置文件可以使用aliyun的镜像,这样在down相关的jar包的时候会块一些。
<mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/group/public</url> </mirror>
好啦,开始Spring Boot的HelloWorld之旅吧。
使用Eclipse创建好maven工程后,修改pom.xml,这里使用SpringBoot最新的2.0.0版本。
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.example</groupId> <artifactId>demo2</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>jar</packaging> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.0.BUILD-SNAPSHOT</version> </parent> <!-- Additional lines to be added here... --> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> <!-- (you don‘t need this if you are using a .RELEASE version) --> <repositories> <repository> <id>spring-snapshots</id> <url>http://repo.spring.io/snapshot</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>spring-milestones</id> <url>http://repo.spring.io/milestone</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>spring-snapshots</id> <url>http://repo.spring.io/snapshot</url> </pluginRepository> <pluginRepository> <id>spring-milestones</id> <url>http://repo.spring.io/milestone</url> </pluginRepository> </pluginRepositories> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
package com.lys.springboot.demo2; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class Example { public static void main(String[] args) throws Exception { SpringApplication.run(Example.class, args); } }
package com.lys.springboot.demo2; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloController { @RequestMapping(value = "/hello", method = RequestMethod.GET) public String sayHello() { return "Hello Spring Boot!"; } }
因为本人电脑8080端口已被占用,所以新添加属性文件修改默认的启动端口,这里使用properties文件和yml都可以,看自己喜好。
server:
port: 8888
方法三种,前提是在pom.xml中配置spring boot的maven插件。
至此第一个demo的hello world完成。
标签:应用 control end http mirror ati cal jdk1.8 toc
原文地址:http://www.cnblogs.com/lys0410/p/6389505.html