springboot-helloworld

2021-06-24 06:06

阅读:541

标签:ati   hot   artifact   odi   sch   tput   rest   上下   nap   

1、eclipse安装springboot插件

2、new->Spring Start ->group:组名称;artifact:组件名称;->选中web->finish

3、复制pom文件


xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0

com.example
demo1
0.0.1-SNAPSHOT
jar

demo1
Demo project for Spring Boot


org.springframework.boot
spring-boot-starter-parent
2.0.2.RELEASE


UTF-8
UTF-8
1.8



org.springframework.boot
spring-boot-starter-web


org.springframework.boot
spring-boot-starter-test
test




org.springframework.boot
spring-boot-maven-plugin



4、创建controller

@RestController
//表示该controller类下所有的方法都公用的一级上下文根
@RequestMapping(value = "/springboot")
public class UserController {

//这里使用@RequestMapping注解表示该方法对应的二级上下文路径
@RequestMapping(value = "/getUserByGet", method = RequestMethod.GET)
String getUserByGet(@RequestParam(value = "userName") String userName){
return "Hello " + userName;
}
}

5、运行*Application的main方法

6、访问http://localhost:8080/springboot/getUserByGet?userName=a

springboot-helloworld

标签:ati   hot   artifact   odi   sch   tput   rest   上下   nap   

原文地址:https://www.cnblogs.com/lichangyunnianxue/p/9670153.html


评论


亲,登录后才可以留言!