博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Boot -- Start Up
阅读量:5299 次
发布时间:2019-06-14

本文共 4125 字,大约阅读时间需要 13 分钟。

做Java Web的同学,都知道项目启动需要放到servlet容器里面运行,无论是使用哪一款IDE,都是非常麻烦的一件事情。在很早之前,一个servlet容器下可以放下很多的项目,并一起运行,而到现在这个年代,很多服务一台机子都不够用了。所以很多时候,一个容器本来就只为一个项目服务,这样一来,容器式的服务器,还需要打包重启server这样的行为,看起来就非常繁琐,而且不利于持续集成。

Spring Boot是一个可以让项目使用极少的配置,并且不需要额外配置到外部的容器中,就可以快速启动项目的微服务框架。看看它是怎么解放我们的生产力的。

.   ____          _            __ _ _/\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \\\/  ___)| |_)| | | | | || (_| |  ) ) ) )'  |____| .__|_| |_|_| |_\__, | / / / /=========|_|==============|___/=/_/_/_/:: Spring Boot ::        (v1.3.1.RELEASE)

添加配置到POM.XML

目前 Spring Boot的最新版本是 1.3.1.RELEASE,这里我是使用maven作为项目的管理方案,当然你也可以使用gradle来作为项目管理方案添加Spring Boot到项目中。

org.springframework.boot
spring-boot-starter-parent
1.3.1.RELEASE
org.springframework.boot
spring-boot-starter-web

编写代码

package hello;import org.springframework.boot.*;import org.springframework.boot.autoconfigure.*;import org.springframework.stereotype.*;import org.springframework.web.bind.annotation.*;@Controller@EnableAutoConfigurationpublic class SampleApplication {    @RequestMapping("/")    @ResponseBody    String home() {        return "Hello World!";    }    public static void main(String[] args) throws Exception {        SpringApplication.run(SampleApplication.class, args);    }}

然后直接执行这个类的main()方法,console里面就会打印出以下的信息。

.   ____          _            __ _ _/\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \\\/  ___)| |_)| | | | | || (_| |  ) ) ) )'  |____| .__|_| |_|_| |_\__, | / / / /=========|_|==============|___/=/_/_/_/:: Spring Boot ::        (v1.3.1.RELEASE)......2016-01-03 20:40:15.732  INFO 12899 --- [           main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@1f021e6c: startup date [Sun Jan 03 20:40:15 CST 2016]; root of context hierarchy2016-01-03 20:40:17.909  INFO 12899 --- [           main] o.s.b.f.s.DefaultListableBeanFactory     : Overriding bean definition for bean 'beanNameViewResolver' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter; factoryMethodName=beanNameViewResolver; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/web/WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter.class]]2016-01-03 20:40:19.232  INFO 12899 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)2016-01-03 20:40:19.256  INFO 12899 --- [           main] o.apache.catalina.core.StandardService   : Starting service Tomcat......

这个时候,一个简单的web项目就启动完毕了。

如果需要修改项目启动的配置『比如服务的端口,最大支持线程数量等等』,可以在resource目录下面新建一个application.properties,里面去填需要的配置。具体的参数可以参考。

效果演示

我们在命令访问这个127.0.0.1:8080这个地址。

➜  ~  http get 127.0.0.1:8080HTTP/1.1 200 OKContent-Length: 12Content-Type: text/plain;charset=UTF-8Date: Sun, 03 Jan 2016 12:52:03 GMTServer: Apache-Coyote/1.1Hello World!

可以看到项目已经成功启动,并且可以访问了。

其实是还是容器

从console信息中不难发现,Spring Boot其实还是使用了tomcat,只不过tomcat变成了嵌入式的服务器了,当然我们也可以通过bean管理,把默认的tomcat方案换成其他的方式。

写在后面

过去我们写一些web小项目,是一个非常繁琐的过程,调试不方便,反复地启动tomcat,单元测试的内容和容器高度耦合,配置巨多,Spring Boot虽然不是什么银弹,但是很好地解决了一些问题,让开发者可以更加专注业务的开发,减少配置上时间的消耗。

转载于:https://www.cnblogs.com/whthomas/p/start-web-project-with-spring-boot.html

你可能感兴趣的文章
博弈论
查看>>
Redis sentinel & cluster 原理分析
查看>>
我的工作习惯小结
查看>>
把word文档中的所有图片导出
查看>>
Spring 自动装配;方法注入
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
uva 10791
查看>>
python的字典(dict)的键值对存储规则
查看>>
more 分页显示文件内容
查看>>
ubuntu18 tensorflow cpu fast_rcnn
查看>>
PageHelper在Mybatis中的使用
查看>>
POJ 1742 Coins
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
ADO.Net——增、删、改、查
查看>>
thinking back no11
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
中标麒麟QT+ODBC+人大金仓开发环境配置
查看>>