服务可以理解为一个接口,一个controller,一个做业务请求的
新建一个HelloWorldController
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.HashMap;
import java.util.Map;
@EnableAutoConfiguration//做spring的注容器,创建tomcat,开spring的加载,然后类就都可以使用了
//@RestController 表示该接口全部返回json格式 相当于下面写了一个@ResponseBody
@RestController
public class HelloWorldController {
// @ResponseBody
@RequestMapping("/index")
public String index(){
return "success";
}
@RequestMapping("/getMap")
public Map<String , Object> getMap(){
Map<String , Object> result = new HashMap<String , Object>();
result.put("errorCode","200");
result.put("errorMsg","成功");
return result;
}
public static void main(String[] args){ //这个函数只运行这一个java文件,因为加入这个@EnableAutoConfiguration注解后默认只扫当前,其他的不访问
//主函數運行springboot項目 (主入口) springboot核心是嵌入Tomcat,但是需要运行,而运行需要一个入口,这个就相当于一个入口
SpringApplication.run(HelloWorldController.class, args);
}
}
然后点击左边的三角号运行
当出现这种情况就可以了
然后在浏览器输入http://localhost:8080/index
输入http://localhost:8080/getMap因为是map集合所以是一个json格式