IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Spring Boot - 基本操作 -> 正文阅读

[Java知识库]Spring Boot - 基本操作

1 Pom文件

1.1 spring-boot-starter-parent

表示当前pom文件从spring-boot-starter-parent继承下来,在spring-boot-starter-parent中提供了很多默认配 置,可以简化我们的开发

<parent> 
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-parent</artifactId>	
	<version>2.1.4.RELEASE</version> 
	<relativePath/> <!-- lookup parent from repository -->
</parent>
  • Java版本和编码方式
<properties> 
	<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 
	<java.version>1.8</java.version> 
	<resource.delimiter>@</resource.delimiter> 
	<maven.compiler.source>${java.version}</maven.compiler.source> 
	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
	<maven.compiler.target>${java.version}</maven.compiler.target> 
</properties>
  • 依赖管理spring-boot-dependencies
<properties> 
	<activemq.version>5.15.9</activemq.version> 
	<antlr2.version>2.7.7</antlr2.version> 
	<appengine-sdk.version>1.9.73</appengine-sdk.version> 
	<artemis.version>2.6.4</artemis.version> 
	... 
</properties>

这样比如使用starter-web的时候就不需要指定版本号

<dependency> 
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-web</artifactId> 
	<version>2.1.4.RELEASE</version> 
</dependency>
  • 使用自己的parent项目

这时候将依赖管理的问题放到dependencyManagement中。

官网说明文档见:13.2.2 Using Spring Boot without the Parent POM

<dependencyManagement> 
	<dependencies> 
		<dependency> 
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-dependencies</artifactId> 
			<version>2.1.4.RELEASE</version> 
			<type>pom</type> 
			<scope>import</scope> 
		</dependency> 
	</dependencies> 
</dependencyManagement>

1.2 打包管理

使用mvn package打包的plugin

<build> 
	<plugins> 
		<plugin> 
			<groupId>org.springframework.boot</groupId> 
			<artifactId>spring-boot-maven-plugin</artifactId> 
		</plugin> 
	</plugins> 
</build>

1.3 Starters

官网见:13.5 Starters

Starters are a set of convenient dependency descriptors that you can include in your application. You get a one-stop shop for all the Spring and related technologies that you need without having to hunt through sample code and copy-paste loads of dependency descriptors. For example, if you want to get started using Spring and JPA for database access, include the spring-boot-starter-data-jpa dependency in your project.

  • 官方starter命名

    spring-boot-starter-*

  • 自定义starter命名

    thirdpartyproject-spring-boot-starter

  • spring-boot-web-starter

    查看其diagram,可以排除某个依赖

<dependency> 
	<groupId>org.springframework.boot</groupId> 
	<artifactId>spring-boot-starter-web</artifactId> 
	<exclusions> 
		<exclusion> 
			<groupId>org.springframework.boot</groupId> 
			<artifactId>spring-boot-starter-tomcat</artifactId> 
		</exclusion> 
	</exclusions> 
</dependency>

2 YangApplication

2.1 @SpringBootApplication

官网见:18. Using the @SpringBootApplication Annotation

等同于@EnableAutoConfiguration,@ComponentScan和@Configuration

2.2 SpringApplication.run

官网见:23. SpringApplication

3 配置文件

3.1 初步感受

server.port=9090

3.2 yml文件

application.yml

3.3 给属性注入值

  • 实体类Person和IDCard
public class Person { 
	private String name; 
	private int age; 
	private Date birthday; 
	private String[] hobbies; 
	private IDCard idCard; 
	... 
}
public class IDCard { 
	private int id; 
	private String number; 
}
  • yml注入写法
person: 
	name: ViolentAyang 
	age: 21 
	birthday: 2000 
	hobbies: [girl,code,travel] 
	idCard: 
		id: 1 
		number: 111
  • Person类增加注解
@Component 
@ConfigurationProperties(prefix="person")
  • 测试
@Autowired private 
Person person;

如果Person类上报错,在Pom文件中加入如下依赖

<dependency> 
	<groupId>org.springframework.boot</groupId> 
	<artifactId>spring-boot-configuration-processor</artifactId> 
</dependency>

4 处理动静态资源

4.1 动态资源

官网见:90.2 Reload Templates without Restarting the Container

  • templates resources

    目录下有一个templates文件夹,可以将动态资源放到其中

  • 引入thymeleaf

<!--thymeleaf的jar包--> 
<dependency> 
	<groupId>org.springframework.boot</groupId> 
	<artifactId>spring-boot-starter-thymeleaf</artifactId> 
</dependency>
  • templates下新建test.html文件
<html xmlns:th="http://www.thymeleaf.org"> 
<head> 
</head> 
<body>
	<span style="color:red; font-size:30pt" th:text="${str}">
</span> 
</body>
  • controller中return test
@Controller 
@RequestMapping("/yang") 
public class YangController { 
@RequestMapping("/hello") 
	public String hello(Model model){ 
		String str="hello spring boot"; 
		//想要动态的显示在网页当中 
		model.addAttribute("str",str); 
		//接下来的页面是能够动态显示传过来的数据 
		return "test"; 
	} 
}

4.2 静态资源

  • static文件夹

    在resources目录下有一个static文件夹,可以将静态资源放到其中,浏览器可以直接访问。

  • 静态资源其他存放文件夹

"classpath:/META-INF/resources/" 
"classpath:/resources/" 
"classpath:/static/" 
"classpath:/public/"

WebMvcAutoConfiguration源码分析

WebMvcAutoConfiguration--->WebMvcAutoConfigurationAdapter.addResourceHandlers(xxx)--->
this.resourceProperties.getStaticLocations()
return this.staticLocations;
private String[] staticLocations = CLASSPATH_RESOURCE_LOCATIONS;
private static final String[] CLASSPATH_RESOURCE_LOCATIONS = { "classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/" };
  • 自定义静态资源文件夹

观察

@ConfigurationProperties(prefix = "spring.resources", ignoreUnknownFields = false) public class ResourceProperties {

配置application.properties

spring.resources.static-locations=classpath:/yang/
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-02-27 10:57:09  更:2022-02-27 10:58:04 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 11:30:00-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码