赞
踩
SpringBoot是Spring体系下的一个框架,设计SpringBoot的目的在于能够帮助开发者快速的搭建Spring应用,并且SpringBoot还整合了(反向整合)很多第三方的框架或者服务。让开发者使用这些技术变得简单。相当于Maven整合了很多第三方的jar包,SpringBoot整合了很多第三方的框架。
约定 >配置 >编码
这个是什么意思呢,以前我们是硬编码的时代,然后SSM框架就是配置的时代,那么springboot是约定时代。
springboot能够快速搭建一个web应用,省去了这么多的配置就是约定好了。我们自己不用去配置这么多的繁琐的配置了。
这个概念很重要需要去理解。
SpringBoot基于Maven(gradle) +Spring
1、进入http://start.spring.io/网站,springboot给我们提供了构建springboot项目的模板代码。
在src/main/resources下有一个application.properties的核心配置文件。
这个配置文件是用来写我们的配置的
可以参考上图来创建,maven改造成springboot工程非常简单,就是这么几步。
问题:如果每次创建工程都那么麻烦,效率就低了。
解决方案:springboot官网有个模板代码,我们填写基本的信息,下载下来就可以了。
就是上图的操作。
修改application.propertie核心配置文件
#服务器的端口
server.port=8888
#项目名称
server.context_path=/test
配置了热部署,我们修改代码后,可以自启,提高我们的开发效率。
代码示例:
<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>
注意: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
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。