创建最简springboot项目

lichengbei

2019-12-21

登录官网https://start.spring.io/,填写基本参数,下载自动生成的项目文件

解压下载好的项目文件,并用idea打开,配置好maven,写一个controller,运行xxxApplication即可

WebController.java的内容如下:

package com.forest.fox.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@ResponseBody
public class WebController {
    /**
     * 测试:http://127.0.0.1:8080/hello-world
     *
     * @return 测试数据
     */
    @RequestMapping(value = "/hello-world", method = RequestMethod.GET)
    public String helloWorld() {
        return "Hello World!";
    }
}

使用浏览器测试:

到此,一个最简单的springboot项目已经搭建完成了。

原文地址:https://www.cnblogs.com/lichengbei/p/12079218.html

时间: 2024-11-08 12:40:00

创建最简springboot项目的相关文章

Eclipse中创建新的SpringBoot项目(打包并且部署到tomcat)

Spring-boot因为其对jar包的高度集成以及简化服务配置,快速部署等的优点,逐渐成为Java开发人员的热衷的框架.下面演示一下怎么在Eclipse中新建Spring-boot项目以及打包部署. 在Eclipse中创建Spring-boot有两种方式 方式一 进入Spring-boot的在线配置网站http://start.spring.io/:定制自己的项目服务组件,下载到本地并使用Eclipse导入项目 服务组件: Web:web项目组件,包含spring mvc,tomcat,log

四、创建第一个springboot项目

简介 spring boot 它的设计目的就是为例简化开发,开启了各种自动装配,你不想写各种配置文件,引入相关的依赖就能迅速搭建起一个web工程.它采用的是建立生产就绪的应用程序观点,优先于配置的惯例. 建构准备 jdk 1.8 或以上 maven 3.0+ IntelliJ IDEA 打开Idea-> new Project ->Spring Initializr ->填写group.artifact ->钩上web(开启web功能)->点下一步就行了.创建完工程,工程的目

SpringBoot学习1:创建第一个SpringBoot项目

一.新建项目 二.打开项目的pom文件,在里面添加maven依赖 1 <!--springboot项目依赖的父项目--> 2 <parent> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-starter-parent</artifactId> 5 <version>2.0.0.RELEASE</version>

使用idea创建第一个springboot项目

多模块项目创建: https://www.cnblogs.com/jcjssl/p/9380309.html 删除无用的文件:https://www.cnblogs.com/yanfei1819/p/7798499.html          mvnw.mvnw.cnd 两个文件 原文地址:https://www.cnblogs.com/hahajava/p/11038127.html

使用eclipse创建第一个SpringBoot项目

1.new->maven->maven project,   勾选 Create a simple project,  下一个页面中填入group id(项目组织唯一标识, 如org.apache)和artifact id(应用名,本例子中为 SpringApplicationDemo),其他默认 2.配置pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://

springboot项目的创建

创建springboot项目 包名和项目名 选择需要使用的框架,web 然后再点击下一步,完成即可创建springboot项目

使用Eclipse 创建 搭建SpringBoot项目

之前用IDEA 创建Springboot 项目感觉十分简单,但是常用的毕竟是Eclipse  所以开一个帖子记录一下Eclipse 如何创建 Springboot 项目 第一步:Help -> Eclipse Marketplace- 在search 中输入 'STS' install 即可! 第二部:new -> project -> other -> Spring start project; 点击finsh   SpringBoot 项目创建完成  ,下面写一个测试demo

SpringBoot创建maven多模块项目

SpringBoot创建maven多模块项目 项目结构 该项目名称为springboot-maven-multi,由springboot-maven-multi.user-dao.user-domain.user-service.user-web个模块组成,其中springboot-maven-multi模块是其他模块的父模块. 第一步:新建项目springboot-maven-multi File -> New -> Project -> Spring Initializr 如下图:输

2springboot:快速创建springboot项目

使用IDEA快速创建springboot项目流程: 创建新的项目选择 项目的命名以及包名 需要什么包就导入什么包 进行测试的单元 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> 此