去年进入一家新的公司,使用的框架是spring boot,这是我第一次使用spring boot,但是感觉上手十分简单,到现在都开发了两个多月了,结合网上的一些资料和开发中遇到的一些问题,写一些文档,一来是对自己学习的一个总结,二来也希望对有需要的朋友一点帮助。
首先是对spring boot一个简单的介绍,他是spring家族推出的新一代java开发框架,其目的是简化spring项目的初始配置和开发过程,在实际开发过程中,spring boot对大多数框架的整合可以使你使用注解十分方便的进行开发,这也是我在开发中用得最爽的地方。
下面开始正题
首先是spring boot的入口,由于spring boot内置了tomcat,所以你无须再去配置tomcat来启动你的项目,每一个spring boot项目都由一个main函数的主入口启动,是以下是spring boot入口的代码
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MySpringApplication {
public static void main(String[] args) {
SpringApplication.run(MySpringApplication.class, args);
}
}
红色标记的注解是标记这个类是spring boot的main类,他包含了
@Configuration,@EnableAutoConfiguration,@ComponentScan这三个注解,有了@SpringBootApplication,我们就能让这个类作为spring boot的入口类。然后,我们还需要在主函数里调用SpringApplication.run方法来启动整个项目,注意:其他类应这入口类的同级或下级目录里,最后将其入口类放在根目录下。
web请求的入口类
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class Controller {
@RequestMapping(value = "/hello",method = RequestMethod.GET)
public String hello() {
return "hello";
}
}
通过@RestController注解标识这是个web请求的入口类,他相当于@ResponseBody和@Controller注解的组合使用,原来一般都是使用
@
Controller的注解,那现在@RestController和@Controller有什么区别呢?
首先,@Controller可以配置视图解析器,直接返回jsp或者html页面,也可以通过@ResponseBody注解,return指定的数据,而@RestController只能return指定的数据,不能进行页面跳转,所以具体怎么使用,可以根据业务情况进行区分。
@RequestMapping注解,其作用是将http请求映射到控制器的处理方法上,其中value属性表示映射的路径,method表示请求的类型。
spring boot入门第一节就到这里,如果有什么问题或者需要更正的地方欢迎留言指出