真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot2中環(huán)境搭建方法

本篇文章為大家展示了SpringBoot2中環(huán)境搭建方法,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

創(chuàng)新互聯(lián)公司是一家專業(yè)提供德保企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設(shè)、成都h5網(wǎng)站建設(shè)、小程序制作等業(yè)務(wù)。10年已為德保眾多企業(yè)、政府機構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站設(shè)計公司優(yōu)惠進行中。

導(dǎo)包
 

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


啟動類

package com.zz;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;/** * 右鍵--》run as application  運行正啟動類的main方法,就可以啟動這個springboot項目。SpringBoot 自帶了 tomcat, 運行這個main方法 的時候,會同時啟動tomcat * @author jiyu * */@SpringBootApplicationpublic class App { public static void main(String[] args) {  // TODO Auto-generated method stub  SpringApplication.run(App.class, args); }}
右鍵–》run as application  運行正啟動類的main方法,就可以啟動這個springboot項目。SpringBoot 自帶了 tomcat, 運行這個main方法 的時候,會同時啟動tomcat啟動成功的日志  .   ____          _            __ _ _ /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/  ___)| |_)| | | | | || (_| |  ) ) ) )  '  |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot ::        (v2.1.6.RELEASE)2019-08-03 21:27:18.453  INFO 16564 --- [           main] com.zz.App                               : Starting App on DESKTOP-9FM4ENL with PID 16564 (C:\bsea\wp\2019\07\02\SpringBoot2\SpringBootBasic\target\classes started by jiyu in C:\bsea\wp\2019\07\02\SpringBoot2\SpringBootBasic)2019-08-03 21:27:18.460  INFO 16564 --- [           main] com.zz.App                               : No active profile set, falling back to default profiles: default2019-08-03 21:27:21.273  INFO 16564 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat initialized with port(s): 8080 (http)2019-08-03 21:27:21.342  INFO 16564 --- [           main] o.apache.catalina.core.StandardService   : Starting service [Tomcat]2019-08-03 21:27:21.343  INFO 16564 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet engine: [Apache Tomcat/9.0.21]2019-08-03 21:27:21.496  INFO 16564 --- [           main] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext2019-08-03 21:27:21.496  INFO 16564 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2926 ms2019-08-03 21:27:21.736  INFO 16564 --- [           main] o.s.s.concurrent.ThreadPoolTaskExecutor  : Initializing ExecutorService 'applicationTaskExecutor'2019-08-03 21:27:21.947  INFO 16564 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http) with context path ''2019-08-03 21:27:21.950  INFO 16564 --- [           main] com.zz.App
測試controllerpackage com.zz.controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class TestController {  @RequestMapping("hello")  public String t1(){  return "hello SpringBoot"; }}


測試

添加 熱啟動功能
STS 或者Eclipse 只需要在pom文件加入一個包,就可以實現(xiàn)熱啟動

      

   org.springframework.boot            spring-boot-devtools            true        

上述內(nèi)容就是SpringBoot2中環(huán)境搭建方法,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


名稱欄目:SpringBoot2中環(huán)境搭建方法
本文鏈接:http://weahome.cn/article/gjjpsp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部