引入依赖 说明:springboot版本2.30.RELEASE,必须要引入的是spring-boot-starter-web/webflux, spring-boot-starter-validation, lombok是一个工具包可以通过注解生成get/set构造 sl4j等; 本文代码,使用的 ...
分类:
编程语言 时间:
2021-06-16 18:19:36
阅读次数:
0
Spring简介 简介 Spring:春天——>给软件行业带来了春天 2002,首次推出了Spring框架的雏形:interface框架! Spring框架即以interface21框架为基础,经过重新设计,并不断丰富其内涵,于2004年3月24日,发布了1.0正式版 Rod Johnson,Spr ...
分类:
编程语言 时间:
2021-06-16 18:11:57
阅读次数:
0
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 ...
分类:
数据库 时间:
2021-06-16 18:10:14
阅读次数:
0
Spring依赖注入DI、Bean作用域、Bean的自动装配 依赖注入(Dependency Injection,DI) 依赖 : 指Bean对象的创建依赖于容器,Bean对象的依赖资源 注入 : 指Bean对象所依赖的资源,由容器来设置和装配 构造器注入 **构造器注入:**https://www ...
分类:
编程语言 时间:
2021-06-16 17:52:34
阅读次数:
0
//程序的主入口,不能删也不能改 @SpringBootApplication//标注是一个springBoot的应用 public class DemoApplication { //将springBoot应用启动 public static void main(String[] args) { ...
分类:
其他好文 时间:
2021-06-16 17:46:34
阅读次数:
0
一,被调用方 web-test spring: application: name: web-test 二,web-test准备接口 package com.tenyears.webTest.controller; import org.springframework.beans.factory.a ...
分类:
编程语言 时间:
2021-06-16 17:34:00
阅读次数:
0
前言因为要用到Spring的初始化加载bean,比如Spring上下文的获取类应该优先加载,监听什么的类应该在启动后加载,所以考虑先后顺序,所以研究一下ApplicationRunner、InitializingBean、@PostConstruct的执行先后顺序问题 一、ApplicationRu ...
分类:
移动开发 时间:
2021-06-15 18:53:28
阅读次数:
0
###一、spring-cloud-alibaba-gateway #####1、pom.xml <!-- gateway 路由网关依赖 webflux--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId> ...
分类:
编程语言 时间:
2021-06-15 18:39:05
阅读次数:
0
1.适用范围和规范不同 filter是servlet规范规定的,只能用在web程序中. 拦截器即可以用在web程序中, 也可以用于application, swing程序中, 是Spring容器内的, 是Spring框架支持的 2.触发时机不同 顺序: Filter-->Servlet-->Inte ...
分类:
其他好文 时间:
2021-06-15 18:19:56
阅读次数:
0
使用jpa时,我们需要继承至JpaRepository 继承之后,可以写HQL或者通过方法名自动生成SQL语句 生成SQL语句时JPA中的常用关键字 And 等价于 SQL 中的 and 关键字, 比如 findByUsernameAndPassword(String user, String pw ...
分类:
其他好文 时间:
2021-06-13 10:29:36
阅读次数:
0