1、
选择项目包含的依赖场景,向导会联网创建spring boot项目
将需要的东西删掉
打开pom.xml后可以看到文件内容已自动写入
将java目录变为sources root,resources变为resources boot
更改settings
似乎是执行了这三个方框中的操作,plugins中的红线消失
2、rename package,创建包和class
添加内容:
package com.cnstrong.springboot.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
/*
@ResponseBody //这个类的所有方法返回的数据直接写给浏览器(如果是对象,转为json数据)
@Controller
*/
@RestController //spring4.2以上,@ResponseBody和@Controller的合体
public class HelloController {
@RequestMapping("/hello")
public String hello(){
return "hello world quick!";
}
}
3、run main()
4、总结
默认生成的spring boot项目的特征:;
(1)主程序已经生成好了,只需要编写自己所需的逻辑
(2)resources文件夹中目录结构
static:保存所有的静态资源 (js,css,images)
templates: 保存所有的模板页面
spring boot默认jar包使用嵌入式的tomcat,默认不支持jsp页面
可以使用模板引擎(freemarker,thymeleaf)
application.properties: spring boot应用的配置文件,可以修改一些默认设置
重启可见
标签:springboot,spring,boot,springframework,initializer,org,import,resources From: https://blog.51cto.com/u_12528551/5900199