图片拷贝不过来,直接从github上下载 。

链接: https://github.com/DFX339/SpringBootDocumentNotes.git

Create a example

pom.xml

Controller:

The defferent between @RestController  and  @Controller:

@Controller  could return jsp、html or   (add @ResponseBody to return json)json

@RestController just could return json.

@RestController  = @Controller +@ResponseBody

@EnableAutoConfiguration: aim to tell springboot how to configure spring.

Main method: to auto starting spring,auto starting the tomcat web server.

When you see that your demo is successful.

@SpringBootApplication on you main class.

Locate you  main class above other clasese package.

@SpringBootApplication = @EnableAutoConfiguration +@ComponentScan

Main class demo  with use the @SpringBootApplication

@Configuration: load one class

@Import : load one special class

@ComponentScan: load all spring conponent.

@Configuration to configure xml

@Configuration :Recommend this annotations

@EnableAutoConfiguration : use this could auto configuration

@EnableAutoConfiguration : to Ingnore some class

@ComponentScan : find  you beans

@Autowired: inject object by constructor.

Structrue codes to use @ComponentScan:

@Repository:always use to annotation the Dao

Default configure file name. application.properties

@SpringBootApplication = @EnableAutoConfiguration + @Configuration + @ComponentScan

Use @EnableAutoConfiguration @Configuration @Import to annotation main class instead of @SpringBootApplication   demo.

@Import : point at some specific classes.

@Component: point at all class.

Springboot-devtools: A powerrful dependency!

Disable to cache in default.

If some files be modified ,the springboot- devtool will restart this program auto.

Restart detailed analysis: springboot worked with two classloaders.

Restart logs: you can figure out it by configuring in application.properties.

spring.devtools.restart.log-condition-evaluation-delta=false

Eclude some files ,project would not to restart when they are changed

Springboot devtool default to start,you can stop it by modifying the System param.

Trigger a brower refresh. (auto)

Use the configure file name definitied by self. Composed with –spring.config.name=Xxxxxx

Use specific configuration

@EnableConfigurationProperties:all class be annotated by @ConfigurationProperties

Use @Valitaded  anotations to validate attributes

Ouput the log fiiles

Springboot support tomcat/jetty ,the default port is 8080

Springboot servlet

Use springboot servlet

Configure springboot servlet in application.properties

Demo in springboot servlet

Modify the port in tomcat

Connect to mysql database;

Tomcat connect pool

Entity Class use @Entity annotations

JOOQ: java object orentied query

Springboot user redis

Connect redis

Springboot provides lots of databases,sql or nosql ,all of those will have XXXTemplate instance to operate.

Springboot cache use demo:

JMS: java message service

JMS-ActionMq:use demo:

JMS send meassages:

RabbitMQ

Send mesages:

Receive messages:

Use restTemplate by RestTemplateBuilder

Use webClient by WebClientBuilder

Springboot use quartz scheduler

50.5

SpringBoot document notes的更多相关文章

  1. vim calendar插件配置

    近日学习markdown,试着记个日志,安装了vim的知名插件calendar:https://github.com/mattn/calendar-vim. 使用网上配置,发现回车之后日期是昨天的,于 ...

  2. Vulkan(1)用apispec生成Vulkan库

    Vulkan(1)用apispec生成Vulkan库 我的Vulkan.net库已在(https://github.com/bitzhuwei/Vulkan.net)开源,欢迎交流. apispec. ...

  3. Azure Active Directory document ---reading notes

    微软利用本地活动目录 Windows Server Active Directory 进行身份认证管理方面具有丰富的经验,现在这一优势已延伸基于云平台的Azure Active Directory.可 ...

  4. Django notes I: collection of links to the Django document

    Links to the Django documents: the Django template language automatically generated context variable ...

  5. SpringBoot和mybatis整合报错:Caused by: org.apache.ibatis.builder.BuilderException: Error creating document instance. Cause: org.xml.sax.SAXParseException; lineNumber: 152; columnNumber: 10; 元素类型为 "mapper"

    很明显,报错是xml有问题,于是去检查,发现: 由于粗心,保存的时候,按的太频繁,多按了个s在里面,导致启动报错!

  6. [idea] SpringBoot整合swagger2实现CRUD

    一:创建SpringBoot ,在pom.xml文件中加入jar包 <dependency> <groupId>io.springfox</groupId> < ...

  7. springboot 集成swagger2

    使用Swagger 可以动态生成Api接口文档,在项目开发过程中可以帮助前端开发同事减少和后端同事的沟通成本,而是直接参照生成的API接口文档进行开发,提高了开发效率.这里以springboot(版本 ...

  8. SpringBoot 集成Swagger2自动生成文档和导出成静态文件

    目录 1. 简介 2. 集成Swagger2 2.1 导入Swagger库 2.2 配置Swagger基本信息 2.3 使用Swagger注解 2.4 文档效果图 3. 常用注解介绍 4. Swagg ...

  9. SpringBoot整合开发

    1.SpringBoot分模块 分模块就是将一个项目分成多个模块,即maven项目. 1)首先创建一个springboot的项目: 第一步:选择springboot的项目 第二步:填写项目的相关信息, ...

随机推荐

  1. 如何调节tomcat初始内存

    1.linux下调节tomcat初始内存大小 linux下tomcat的运行文件为catalina.sh,打开文件,在文件靠近顶部找到“ JAVA_OPTS ”字样,在它后面添加如下内容即可 # JA ...

  2. springmvc: 普通list数据输出json

    springmvc: 普通list数据输出json 加入json依赖 <dependency> <groupId>com.fasterxml.jackson.core</ ...

  3. FetchType.LAZY和FetchType.EAGER什么区别

    1.FetchType.LAZY:懒加载,加载一个实体时,定义懒加载的属性不会马上从数据库中加载. 2.FetchType.EAGER:急加载,加载一个实体时,定义急加载的属性会立即从数据库中加载. ...

  4. 2017-2018-2 20165327 实验四《Android程序设计》实验报告

    2017-2018-2 20165327 实验四<Android程序设计>实验报告 任务一 Android Stuidio的安装测试: 任务要求 参考Android开发简易教程,安装 An ...

  5. 20165327 2017-2018-2 《Java程序设计》第7周学习总结

    20165327 2017-2018-2 <Java程序设计>第7周学习总结 教材内容总结 第十一章 (一)MySQL数据库服务器 下载安装MySQL服务器 启动MySQL数据库服务器 在 ...

  6. Vue.js示例:树型视图; 模式组件;

    树型图 本示例是一个简单的树形视图实现,它展现了组件的递归使用. mycode pen:https://codepen.io/chentianwei411/pen/KGKQxE 重点:递归是如何形成的 ...

  7. slf4j日志用法

    在pom.xml中添加日志依赖 <!--slf4j--> <dependency> <groupId>org.slf4j</groupId> <a ...

  8. Django的form组件

    forms组件 forms组件,是一个类.在视图函数中创建一个类,类需要继承forms.Form from django import  forms 1.校验数据 步骤和语法: 1. 创建一个form ...

  9. Linux命令详解-file

    file命令用来识别文件类型,也可用来辨别一些文件的编码格式.它是通过查看文件的头部信息来获取文件类型,而不是像Windows通过扩展名来确定文件类型的. 1.命令格式: file [ -bchikL ...

  10. 第三周学习进度条+PSP0过程文档

    第三周学习进度条    第三周 所花时间(包括上课) 14:30-15:35(65)+19:00-21:20(140)+17:52-19:00(68)+19:10-20:45(95)+21:00-22 ...