spring
1.地位高--
后端web开发--基于springboot开始
二.SpringBoot Web入门
1. http--请求协议 localhost--本机服务 8080--端口号 /hello--访问的资源
发起请求之后要被web应用程序处理
路径访问成功!!!localhost:8080/hello
package com.itheima.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; //请求处理类 @RestController public class HelloController { //请求调用执行hello方法 @RequestMapping("/hello") //处理请求会调用下面的方法 public String hello(){ System.out.println("hello world~"); return "hello world~"; } }