springboot-helloworld
2021-06-24 06:06
标签:ati hot artifact odi sch tput rest 上下 nap 1、eclipse安装springboot插件 2、new->Spring Start ->group:组名称;artifact:组件名称;->选中web->finish 3、复制pom文件 4、创建controller @RestController //这里使用@RequestMapping注解表示该方法对应的二级上下文路径 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
demo1
spring-boot-starter-parent
spring-boot-starter-web
spring-boot-starter-test
spring-boot-maven-plugin
//表示该controller类下所有的方法都公用的一级上下文根
@RequestMapping(value = "/springboot")
public class UserController {
@RequestMapping(value = "/getUserByGet", method = RequestMethod.GET)
String getUserByGet(@RequestParam(value = "userName") String userName){
return "Hello " + userName;
}
}
上一篇:归并排序
文章标题:springboot-helloworld
文章链接:http://soscw.com/index.php/essay/97956.html