Eclipse如何搭建一个SpringBoot项目

1、什么是springboot

SpringBoot是Spring体系下的一个框架,设计SpringBoot的目的在于能够帮助开发者快速的搭建Spring应用,并且SpringBoot还整合了(反向整合)很多第三方的框架或者服务。让开发者使用这些技术变得简单。相当于Maven整合了很多第三方的jar包,SpringBoot整合了很多第三方的框架。

约定 >配置 >编码

这个是什么意思呢,以前我们是硬编码的时代,然后SSM框架就是配置的时代,那么springboot是约定时代。

springboot能够快速搭建一个web应用,省去了这么多的配置就是约定好了。我们自己不用去配置这么多的繁琐的配置了。

这个概念很重要需要去理解。

SpringBoot基于Maven(gradle) +Spring

2、下载springboot工程

1、进入http://start.spring.io/网站,springboot给我们提供了构建springboot项目的模板代码。

3、将下载的工程导入到Eclipse中

  1. 下载好的项目我们导入到我们的eclipse中去。

3、SpringBoot工程项目结构介绍

  1. pom.xml

2.application.properties

在src/main/resources下有一个application.properties的核心配置文件。

这个配置文件是用来写我们的配置的

  1. 服务器的端口server.port=8888
  2. 配置一个项目名(spirngboot默认没有项目名)server.context_path=/test
  3. 整合mybatis配置数据源等

3.启动类

4、Mavne工程改造成spirngboot工程?

  1. 修改pom.xml文件
  2. 创建一个application.properties文件
  3. 创建一个启动类

可以参考上图来创建,maven改造成springboot工程非常简单,就是这么几步。

问题:如果每次创建工程都那么麻烦,效率就低了。

解决方案:springboot官网有个模板代码,我们填写基本的信息,下载下来就可以了。

就是上图的操作。

5、SpringBoot的起步依赖给我做了什么?

  • spring-boot-starter

  • spring-boot-starter-web:

5、配置SpringBoot的tomcat端口和项目名称:

修改application.propertie核心配置文件

#服务器的端口

server.port=8888

#项目名称

server.context_path=/test

6、springboot配置热部署

配置了热部署,我们修改代码后,可以自启,提高我们的开发效率。

代码示例:

<xml version=“1.0” encoding=“UTF-8”>

<project xmlns=“http://maven.apache.org/POM/4.0.0” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance”

xsi:schemaLocation=“http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd”>

<modelVersion>4.0.0</modelVersion>

<parent>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-parent</artifactId>

<version>1.5.20.RELEASE</version>

</parent>

<groupId>com.xiaomin</groupId>

<artifactId>springboot_demo</artifactId>

<version>0.0.1-SNAPSHOT</version>

<name>springboot_demo</name>

<description>Demo project for Spring Boot</description>

<properties>

<java.version>1.8</java.version>

</properties>

<dependencies>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-web</artifactId>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-test</artifactId>

<scope>test</scope>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-devtools</artifactId>

<optional>true</optional>

</dependency>

</dependencies>

<build>

<plugins>

<plugin>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-maven-plugin</artifactId>

<configuration>

<fork>true</fork>

</configuration>

</plugin>

</plugins>

</build>

</project>

7、测试

  1. 创建controller

注意:springboot约定,创建的类放在和启动类,同级下就可以扫描到,就不用自己配置扫描了。但是我们的实际并不是这样的,有很多层,有dao、service、controller

不在同一级别的需要在启动类添加包的扫描

package com.xiaomin.springboot_demo;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.boot.web.servlet.FilterRegistrationBean;

import org.springframework.context.annotation.Bean;

@SpringBootApplication(scanBasePackages={“a.b”,“com.xiaomin.springboot_demo”})[个人用户1]

public class SpringbootDemoApplication {

public static void main(String[] args) {

SpringApplication.run(SpringbootDemoApplication.class, args);

}

}

2.controller代码

RestController注解等于@Controller,@RequestBody这两个注解。

package a.b;

import org.springframework.web.bind.annotation.RequestBody;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RestController;

/**

* RestController注解 == @Controller @RequestBody

* 一个顶俩

* @author Administrator

*

*/

@RestController

public class MyController2 {

@RequestMapping("/hello2")

public String hello2(){

return “hello springboot2!!”;

}

}

返回结果:端口我们在application.propertis中修改了,故这里是8888

  • 2
    点赞
  • 41
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值