說明:開啓自動編譯以後,結合Ctrl+Shift+F9
會有熱更新效果。 java
鍵入Ctrl + Shift + Alt + /
,進入Registry,找到compiler.automake.allow.when.app.running
,而後勾選上。 web
啓動或者調試選擇一個 json
訪問8080端口出現以下說明啓動成功了 編寫接口helloWorld@RestController //等價於 @Controller+@ResponseBody 用於返回json
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
@RequestMapping("/helloWorld") //路由path
public String helloWorld() {
return "hello world!";
}
}
複製代碼