SpringBoot
文章平均质量分 77
SpringBoot
涂作权的博客
To do what I want to do!
展开
-
远程调试方法
1.编写Spring工程案例1.1.准备SpringBoot工程pom.xml定义:<?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 h原创 2021-08-15 22:35:28 · 3148 阅读 · 4 评论 -
springBoot中启用事务管理
https://blog.csdn.net/shenzhennba/article/details/80851080转载 2018-11-02 17:27:13 · 4874 阅读 · 1 评论 -
spring boot 使用外部配置文件
https://blog.csdn.net/jiashiwen/article/details/78286149https://blog.csdn.net/m0_37893932/article/details/78275418?locationNum=7&fps=1转载 2018-11-02 16:52:45 · 5465 阅读 · 0 评论 -
SpringBoot热部署之devtools案例(学习笔记)
声明:本案例学习http://blog.csdn.net/je_ge,在此感谢je_ge提供的学习用的资料1、项目目录结构2、pom.xml的内容<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=原创 2017-10-06 16:13:20 · 747 阅读 · 0 评论 -
SpringBoot使用JdbcTemplate案例(学习笔记)
声明:本案例学习http://blog.csdn.net/je_ge,在此感谢je_ge提供的学习用的资料1、项目结构2、pom.xml的内容<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="h原创 2017-10-06 16:04:54 · 1666 阅读 · 0 评论 -
SpringBoot任务调度案例(学习笔记)
声明:本案例学习http://blog.csdn.net/je_ge,在此感谢je_ge提供的学习用的资料1、项目目录结构2、pom.xml的文件内容<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocatio原创 2017-10-06 15:58:26 · 4460 阅读 · 0 评论 -
SpringBoot和MyBatis集成案例(学习笔记)
声明:本案例学习http://blog.csdn.net/je_ge,在此感谢je_ge提供的学习用的资料1、项目目录结构2、pom.xml的内容如下<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocatio原创 2017-10-06 15:51:16 · 1033 阅读 · 0 评论 -
SpringBoot之SSL配置(SpringBoot实战)
1、SSL介绍和说明SSL的配置也是我们在实际应用中经常遇到的场景SSL(Secure Sockets Layer,安全套接层)是为网络通信提供安全及数据完整性的一种协议,SSL在网络传输层对网络连接进行加密。SSL协议位于TCP/IP协议与各种应用层协议之间,为数据通信提供安全支持。SSL协议可以分为两层:SSL记录协议(SSL Record Protocal),它建立在可靠的传输协议(如TCP)原创 2017-10-08 00:25:00 · 1499 阅读 · 0 评论 -
SpringBoot中Tomcat配置(学习SpringBoot实战)
1、Tomcat配置Spring Boot默认内嵌的Tomcat为Servlet容器,所以本节只讲对Tomcat配置,其实本节的配置对Tomcat、Jetty和Undertow都是通用的。1.1 配置Tomcat关于Tomcat的所有属性都在org.springframework.boot.autoconfigure.web.ServerProperties配置类中做了定义,我们只需在applica原创 2017-10-07 21:21:34 · 21992 阅读 · 0 评论 -
SpringBoot的Thymeleaf支持,结合SpringMVC做的案例(学习SpringBoot实战)
1、创建SpringBoot项目创建项目可以参考:http://blog.csdn.net/tototuzuoquan/article/details/78167839中通过Spring Initializr创建项目的过程。 在这个过程中的选择thymeleaf模板引擎。2、创建好之后的目录结构:3、pom.xml的内容<?xml version="1.0" encoding="UTF-8"?>原创 2017-10-07 17:38:18 · 1420 阅读 · 0 评论 -
SpringBoot内部配置:“application.properties配置”和”使用XML配置”,读取属性文件中的内容,日志配置,Profile配置(学习:SpringBoot实战)
1 SpringBoot内部配置1.1、修改端口和应用上下文server.port=9090server.context-path=/hellobootSpring Boot也可以使用yml进行配置,application.yml配置方式:server: port:9090 contextPath:/helloboot1.2、使用XML配置SpringBoot提倡零配置,即无xml配置原创 2017-10-07 12:25:17 · 9966 阅读 · 0 评论 -
SpringBoot 自定义Banner
1、进入http://patorjk.com/software/taag 输入 toto2、查看Banner中的内容原创 2017-10-07 12:19:34 · 671 阅读 · 0 评论 -
快速创建springboot项目:使用http://start.spring.io/网页创建,使用IDEA的Spring Initializr创建,使用SpringBoot CLI创建
1 快速创建SpringBoot项目快速创建SpringBoot项目至少可以通过两种方式: 1、使用http://start.spring.io/网页版的创建 2、使用IDEA创建1.1、通过访问http://start.spring.io/的方式创建http://start.spring.io/,访问后的界面效果如下: 1.1.1、点击Switch back to the simple ve原创 2017-10-07 00:14:19 · 17389 阅读 · 0 评论 -
SpringBoot比较好的GitHub资源
https://github.com/je-ge/spring-boot原创 2017-09-19 23:42:12 · 11004 阅读 · 0 评论 -
Spring Boot 2.0.0.M3使用案例,案例配置,常用命令,注解介绍,热部署
1.系统需求Spring Boot 2.0.0.M3需要Java8 和 Spring 5.0.0.RC3或者更高版本。指定的支持的编译工具是Maven 3.2+和Gradle 3(3.4 或 更高版本)2.创建一个新项目mvn archetype:generate -DgroupId=com.example -DartifactId=myproject -DarchetypeArtifactId=m原创 2017-09-02 01:25:21 · 6839 阅读 · 0 评论