一起学JAVA之《spring boot》03 - 开始spring boot基本配置及项目结构(转)
一、导航
本节内容简介:
1. spring boot 配置文件,使用@SpringBootApplication注解
2. spring boot 修改Java版本 和项目编码
3. 一个标准的spring boot 代码结构
4. 查看当前项目自动配置了那些模块
5. 禁用自动配置
6. 自定义banner及关闭banner
一、spring boot 配置文件,使用@SpringBootApplication注解
spring boot 默认使用application.properties或者application.yml,放置在src/main/resources目录或者类路径的/config下,一般建议就放在src/main/resources
这里我们使用application.properties来配置,这里我们试着修改下端口和访问路径
目录结构如下:
配置代码:
server.port=8081
server.context-path=/boot
- 1
- 2
编写测试controller类
package com.likeoak.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 测试Controller
* The type Test controller.
*/
@RestController
public class TestController {
/**
* 返回 String 字符串,访问成功,返回“test ok”
* Test string.
*
* @return the string
*/
@RequestMapping("/test")
public String test(){
return "test ok!";
}
}
启动main方法,及运行APP启动类
package com.likeoak;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* 默认启动类
*/
@SpringBootApplication
public class App
{
public static void main( String[] args )
{
SpringApplication.run(App.class,args);
}
}
访问:http://localhost:8081/boot/test
结果:test ok!
代码解释:
@SpringBootApplication 解释
先看下注解@SpringBootApplication的源码
@SpringBootApplication的源码
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = {
@Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
@Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {
里面包含@SpringBootConfiguration的源码
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Configuration
public @interface SpringBootConfiguration {
总结:@SpringBootApplication注解其实是@Configuration,@EnableAutoConfiguration,@ComponentScan这三个注解组合
注解解释
@Configuration 注解:标明该类使用Spring是基于java的配置
@EnableAutoConfiguration :开启自动配置注解,有这个注解spring boot就会根据我们所引用的jar包来自动配置我们需要的配置,这正是spring boot 魔力。
@ComponentScan:spring扫描注解,有这个注解spring boot 就会扫描(默认是以根路径为准)所有的包,来加载所有的@Bean,所有这里的TestController 就是被扫描到的,我们就可以访问了。
二、spring boot 修改Java版本 和项目编码
在使用spring bootde 过程中,想自定义java配置,可以使用以下配置,加载到pom.xml中即可
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
三、一个标准的spring boot 代码结构
一个典型的spring boot 项目结构,这也是官网推荐的
com
+- example
+- myproject
+- Application.java
|
+- domain
| +- Customer.java
| +- CustomerRepository.java
|
+- service
| +- CustomerService.java
|
+- web
+- CustomerController.java
四、 查看当前项目自动配置了那些模块
查看当前项目有哪些自动配置,一共有三种方法
1. 直接运行jar -jar xxx.jar –debug
2. 在application中设置属性
debug=true
- 直接在启动的时候,增加启动参数

我们可以选着任何一种,访问结果如下
已启动配置:
Positive matches:
DispatcherServletAutoConfiguration matched:Positive matches:- @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
- @ConditionalOnWebApplication (required) found StandardServletEnvironment (OnWebApplicationCondition) DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched:
- @ConditionalOnClass found required class 'javax.servlet.ServletRegistration'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
- Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched:
- @ConditionalOnClass found required class 'javax.servlet.ServletRegistration'; @ConditionalOnMissingClass did not find unwanted class (OnClassCondition)
- DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) ....
未自动配置:
Negative matches:
ActiveMQAutoConfiguration:Negative matches:Did not match:
- @ConditionalOnClass did not find required classes 'javax.jms.ConnectionFactory', 'org.apache.activemq.ActiveMQConnectionFactory' (OnClassCondition) AopAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required classes 'org.aspectj.lang.annotation.Aspect', 'org.aspectj.lang.reflect.Advice' (OnClassCondition) ArtemisAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required classes 'javax.jms.ConnectionFactory', 'org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory' (OnClassCondition) BatchAutoConfiguration:
Did not match:
- @ConditionalOnClass did not find required classes 'org.springframework.batch.core.launch.JobLauncher', 'org.springframework.jdbc.core.JdbcOperations' (OnClassCondition) ...
五、 禁用自动配置
比如不想自动配置数据库连接,就可以用如何代码来关掉自动配置
/**
* 测试关闭数据库自动配置
* The type Data source config.
*/
@Configuration
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class})
public class DataSourceConfig {
}
六、自定义banner及关闭banner
自定义spring boot 默认启动图案步骤:
1. 直接在src/main/resources下创建一个banner.txt
2. 访问网站http://patorjk.com/software/taag 生成字符,这里我们用”yiqixuejava”(一起学java),将生成的字符复制到banner.txt中,启动应用即可
启动结果:
.__ .__ __
___.__.|__| _____|__| ___ _____ __ ____ |__|____ ___ _______
< | || | / ____/ | \ \/ / | \_/ __ \ | \__ \\ \/ /\__ \
\___ || | < <_| | | > <| | /\ ___/ | |/ __ \\ / / __ \_
/ ____||__| \__ |__| /__/\_ \____/ \___ > /\__| (____ /\_/ (____ /
\/ |__| \/ \/ \______| \/ \/
后续会继续推出这一系列spring boot的文章
原文地址:http://blog.csdn.net/javastudyr/article/details/73824894
一起学JAVA之《spring boot》03 - 开始spring boot基本配置及项目结构(转)的更多相关文章
- 精进 Spring Boot 03:Spring Boot 的配置文件和配置管理,以及用三种方式读取配置文件
精进 Spring Boot 03:Spring Boot 的配置文件和配置管理,以及用三种方式读取配置文件 内容简介:本文介绍 Spring Boot 的配置文件和配置管理,以及介绍了三种读取配置文 ...
- 五分钟学Java:一篇文章搞懂spring和springMVC
原创声明 本文作者:黄小斜 转载请务必在文章开头注明出处和作者. 本文思维导图 什么是Spring,为什么你要学习spring? 你第一次接触spring框架是在什么时候?相信很多人和我一样,第一次了 ...
- Spring笔记03(Spring创建对象的三种方式)
1.创建对象的三种方式和bean的生命周期的验证: Animal接口代码: package cn.pb.dao; /** * 动物接口 */ public interface Animal { //吃 ...
- 读懂这些spring boot的核心注解,快速配置完成项目搭建
在spring boot中,摒弃了spring以往项目中大量繁琐的配置,遵循约定大于配置的原则,通过自身默认配置,极大的降低了项目搭建的复杂度.同样在spring boot中,大量注解的使用,使得代码 ...
- 从零开始学 Java - 我放弃了 .NET ?
这不是一篇引起战争的文章 毫无疑问,我之前是一名在微软温暖怀抱下干了近三年的 .NET 开发者,为什么要牛(sha)X一样去搞 Java 呢?因为我喜欢 iOS 阿!哈哈,开个玩笑.其实,开始学 Ja ...
- 教妹学Java:Spring 入门篇
你好呀,我是沉默王二,一个和黄家驹一样身高,刘德华一样颜值的程序员(管你信不信呢).从两位偶像的年纪上,你就可以断定我的码龄至少在 10 年以上,但实话实说,我一直坚信自己只有 18 岁,因为我有一颗 ...
- 51. spring boot属性文件之多环境配置【从零开始学Spring Boot】
原本这个章节是要介绍<log4j多环境不同日志级别的控制的>但是没有这篇文章做基础的话,学习起来还是有点难度的,所以我们先一起了解下spring boot属性文件之多环境配置,当然文章中也 ...
- Spring Boot-初学01 -使用Spring Initializer快速创建Spring Boot项目 -@RestController+spEL -实现简单SpringBoot的Web页面
1.IDEA:使用 Spring Initializer快速创建项目 IDE都支持使用Spring的项目创建向导快速创建一个Spring Boot项目: 选择我们需要的模块:向导会联网创建Spring ...
- 从零开始学 Java - Spring 集成 Memcached 缓存配置(二)
Memcached 客户端选择 上一篇文章 从零开始学 Java - Spring 集成 Memcached 缓存配置(一)中我们讲到这篇要谈客户端的选择,在 Java 中一般常用的有三个: Memc ...
随机推荐
- Android 学习笔记之Bitmap位图的旋转
位图的旋转也可以借助Matrix或者Canvas来实现. 通过postRotate方法设置旋转角度,然后用createBitmap方法创建一个经过旋转处理的Bitmap对象,最后用drawBitmap ...
- SpringMVC的注解方式
mvc-servlet.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns=&qu ...
- 分享一个js加密的几种方法
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- HDU 1716 排列2
排列2 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submiss ...
- Active Data Guard
ADG INTRODUCE Active Data Guard(ADG)是ORACLE 11g企业版的新特性,需要单独的License.可以打开Physical standby至read only模式 ...
- C/C++(数据结构栈的实现)
栈的实现 特点FILO(先进后出) 假设栈的空间为8 top == 0 不能出栈,已到栈底 top == 8 不能入栈,已到栈顶 top始终指向一个待插入的位置 push操作,1.写入数据,2.top ...
- 洛谷 P1255 数楼梯
P1255 数楼梯 题目描述 楼梯有N阶,上楼可以一步上一阶,也可以一步上二阶. 编一个程序,计算共有多少种不同的走法. 输入输出格式 输入格式: 一个数字,楼梯数. 输出格式: 走的方式几种. 输入 ...
- 【MongoDB】mongodump and mongorestore of mogodb
The another tool will be mentioned in this blog, namely mongodump and mongorestore. General speaking ...
- 洛谷P1143 进制转换
题目描述 请你编一程序实现两种不同进制之间的数据转换. 输入输出格式 输入格式: 输入数据共有三行,第一行是一个正整数,表示需要转换的数的进制n(2≤n≤16),第二行是一个n进制数,若n>10 ...
- 在VS中设置比较和谐的字体和颜色的方法
作者:朱金灿 来源:http://blog.csdn.net/clever101 先在studiostyl.es网站选择你喜欢的字体方案,我个人比较喜欢这款: Humane Studio,注意在网页上 ...