之后就是Maven自动导包,第一次创建会比较慢,以后创建就快了
Controller(包括其他的)包要建在与程序主入口的同一个文件夹下
编写一个Controller接口
package com.google.hellospringboot.Controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; @RestController public class HelloControlle { @RequestMapping("/hello") public String hello(){ return "hello,world"; } }