龙空技术网

Spring Boot入门-快速搭建web项目

Java碎碎念 182

前言:

眼前咱们对“构建javaweb项目”大概比较关怀,同学们都想要知道一些“构建javaweb项目”的相关文章。那么小编也在网络上搜集了一些对于“构建javaweb项目””的相关知识,希望姐妹们能喜欢,朋友们快快来学习一下吧!

Spring Boot 概述:

Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can "just run".

We take an opinionated view of the Spring platform and third-party libraries so you can get started with minimum fuss. Most Spring Boot applications need very little Spring configuration.

Spring Boot可以轻松创建独立的,生产级的基于Spring的应用程序,而你需要做的仅仅是run 这个项目。

Spring Boot 的设计是为了让你尽可能快的跑起来 Spring 应用程序并且尽可能减少你的配置文件。

Spring Boot特性:

创建独立运行的Spring应用程序直接嵌入Tomcat,Jetty或Undertow(无需部署WAR文件)提供starter简化maven配置尽可能自动配置Spring和第三方库提供准生产的应用监控功能,例如指标,运行状况检查绝对没有代码生成,也不需要XML配置Spring Boot快速搭建web项目

Spring Boot项目搭建

访问:,如下图所示(spring boot版本2.1.2,依赖了web)填写相关的项目信息、依赖等,就会生成一个maven项目的压缩包,下载解压

spring官网截图

打开idea,找到file-->open-->选择项目的路径,找打pom文件-->以project 形式打开idea导入截图 选择Open as Project截图编写HelloController,放到包(com.example.helloSpringBoot.controller)下,HelloController代码如下:

package com.example.helloSpringBoot.controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class HelloController { @RequestMapping("/hello") public String HelloSpring (){ System.out.println("hello spring boot"); return "hello spring boot"; }}
点击运行按钮,查看运行结果,截图如下:运行按钮截图 运行日志截图项目启动成功后,浏览器输入 访问,看到下面成功截图后,说明项目搭建成功

浏览器访问截图

欢迎关注我的微信公众号“Java碎碎念”,欢迎留言,一起学习,一起进步。

标签: #构建javaweb项目