springboot
文章平均质量分 95
spark man
crazy for coding
展开
-
springboot的web服务器
我们知道,springboot是spring-mvc的整合,其中一项优点是内嵌服务器。但是,他并非一定要使用内嵌服务器,springboot也提供了外部部署的选项。springboot启动内嵌服务器外部服务器内嵌服务器首先摘入官网的一段话:Under the hood, Spring Boot uses a different type of ApplicationContext for embedded servlet container support. The ServletWebServe原创 2022-02-13 21:02:09 · 3014 阅读 · 0 评论 -
springboot自动配置魔法
Springboot Auto Configurationdemo@SpringBootApplication注解将demo改成自动配置demo我们会用一个小demo来开启springboot自动配置的讲解。父工程的pom:<dependencyManagement> <dependencies> <!-- https://mvnre...原创 2020-05-07 20:55:50 · 286 阅读 · 0 评论 -
springboot整合jpa简单实战
springbootpom和ymlentityJpaRepository运行增查pom和ymljpa指的是java persistence api,是用来操作数据层的。pom.xml:<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifact原创 2020-06-20 16:51:54 · 391 阅读 · 0 评论 -
sringboot中的security
springboot安全我们会用代码看看spring-security如何在boot中工作。没有spring-security依赖的情况:<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation...原创 2020-04-28 18:03:54 · 127 阅读 · 0 评论 -
springboot整合kafka
kafka是一个流式平台,官方的定义是:A streaming platform has three key capabilities:1,Publish and subscribe to streams of records, similar to a message queue or enterprise messaging system.2,Store streams of reco...原创 2020-04-20 23:41:51 · 580 阅读 · 0 评论 -
springboot入门
springboot 入门创建项目springmvc单元测试应用监控创建项目首先创建一个快速的maven项目:然后使用idea将其打开。打开pom。在其中添加parent: <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-bo...原创 2020-03-20 18:49:13 · 163 阅读 · 0 评论