Java学习笔记整理: 关于SpringBoot 2024/7/12;

SpringBoot

springboot也是spring公司开发的一款框架。为了简化spring项目的初始化搭建的。

特点specialty:

springboot的特点:

1) 自动配置

Spring Boot的自动配置是一个运行时(更准确地说,是应用程序启动时)的过程,考虑了众多因素,才决定Spring配置应该用哪个,不该用哪个。该过程是SpringBoot自动完成的。

2) 起步依赖

起步依赖本质上是一个Maven项目对象模型(Project Object Model,POM),定义了对其他库的传递依赖,这些东西加在一起即支持某项功能。

简单的说,起步依赖就是将具备某种功能的坐标打包到一起,并提供一些默认的功能。

3) 辅助功能

提供了一些大型项目中常见的非功能性特性,如嵌入式服务器tomcat、安全、指标,健康检测、外部配置等。

创建Create:

搭建springboot的项目
  1. 新建>选择Spring Boot|Spring Initializr

  2. SpringBoot版本3.0以上使用java17>选择Web中SpringWeb包(剩下的看需求)

  3. Java8配置------------------------------------
    <?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><!--springboot3.0以上必须使用jdk17--><version>2.3.12.RELEASE</version><relativePath/> <!-- lookup parent from repository --></parent><groupId>com.ykq</groupId><artifactId>qy174-demo01</artifactId><version>0.0.1-SNAPSHOT</version><name>qy174-demo01</name><description>qy174-demo01</description>
    ​<properties><!--java使用版本--><java.version>8</java.version></properties><dependencies><!--web依赖jar--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency>
    ​<!--单元测试jar--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency></dependencies>
    <!--如果下方出现红色可以删除--><build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin></plugins></build>
​
</project>
```

环境|文件配置:

关于SpringBoot的配置文件和框架使用

常用的配置文件种类:

springboot提供了两种配置文件。不管是哪种他们的前缀都是application

第一种application.properties

第二种:application.yml | application.yaml

如果两个文件同时存在,properties优先级更高。

#.yml | .yaml文件写入格式(":"后务必跟空格然后再写入值,字符串无须+"")
#key: 
#   value: hhh
#   key2: value 
server:port: 8088servlet:context-path: /bbb
#properties写入格式(字符串无须+"")
#key=value
#key.key2=value
server.port=8080
server.servlet.context-path=/aaa

*包扫描的原理

ssm项目必须加包扫描。而现在springboot没有在写包扫描了。自带了包扫描的功能。核心在主类上@SpringBootApplication上,它是一个复合注解。里面包含:

@EnableAutoConfiguration开启自动配置,里面包含:

@AutoConfigurationPackage,

@Import({AutoConfigurationPackages.Registrar.class})

需要导入一个自动配置包的类。加载主类所在的包,并按照该包进行扫描。

@SpringBootApplication
​
@ComponentScan(basePackages = {"com.gzx.demo1.config","com.gzx.demo1.controller"})
//不写该注释默认扫描该文件所在的包,加上该注释指定扫描的包,默认扫描消失;
​
public class Demo1Application {
​public static void main(String[] args) {SpringApplication.run(Demo1Application.class, args);}
​
}

自动装配原理:

我们原来ssm项目,都需要加载前端控制器DispatcherServlet. 而现在的springboot并没有加载DispatcherServletspringboot具备自动装配的功能。

127个自动装配

springboot启动时,加载了使用@SpringbootApplication注解的类,该注解是一个符合注解,包含@EnableAutoConfiguration该注解开启了自动装配功能,该注解也是一个符合注解里面包含@Import({AutoConfigurationImportSelector.class}),导入AutoConfigurationImportSelector该类自动装配选择器类,该类会自动加载很多自动装配。每个自动装配会完成对于的自动装配功能

protected AutoConfigurationEntry getAutoConfigurationEntry(AnnotationMetadata annotationMetadata){if(!this.isEnabled(annotationMetadata)){return EMPTY_ENTRY;} eles {AnnotationAttrbutes attributes = this. getAttributes(annotationMetadata);//获取所有的自动装配类List<String> configurations = this.getCandidateConfigurations(annotationMetadata,attrbutes);//移除重复的自动装配类configurations= this.removeDuplicates(configurations);
​Set<String> exclusions = this.getExclusions(annotationMetadata,attributes);
​this.checkExcludedClasses(configurations,exclusions);//移除排除的自动配置类configurations.removeAll(exclusions);//过滤掉没有使用的starter自动配置configurations = this.getConfigurationClassFilter().filter(configurations);
​this.fireAutoConfigurationImporEvents(configurations,exclusions);
​return new AutoConfigurationEntry(configurations,exclusion);}
}

*读取配置文件中的内容

我们习惯把一些自己的信息放入配置文件中,便于修改。比如OSS. 支付。 我们还希望通过java代码能够读取到配置文件中自己的信息。

springboot提供了两种方式用于读取springboot配置文件中信息的方式。

第一种: @ConfigurationProperties
使用在类上 @ConfigurationProperties(prefix="前缀")
#配置文件
users.name=hhh
users.age=123
users.hobby=swim,basketball
@ConfigurationProperties(prefix = "users")//定义读取属性名
@Component//该类的创建spring,而且创建时自动读取配置文件为users的属性
@Data
public class User {private String name;private int age;private List<String> hobby;
}
第二种: @Value
使用在变量上 @Value("${类名.变量名}")(只能读取基本类型和字符串类型)
@RestController
public class TestController {//将属性文件中变量给予注释变量@Value("${users.name}")private String name;
​//访问地址@GetMapping("/user")public String test(){System.out.println(name);return name;}
}

*profile多环境配置

自理解:

通过不同的配置文件切换spring配置,再主配置文件中进行便捷切换;

我们在开发Spring Boot应用时,通常同一套程序会被安装到不同环境,比如:开发、测试、生产等。其中数据库地址、服务器端口等等配置都不同,如果每次打包时,都要修改配置文件,那么非常麻烦。profile功能就是来进行动态配置切换的。

  1. profile配置文件

    多profile文件方式,yml多文档方式

  2. profile激活方式

    配置文件|命令行参数

常用命名方式:

application-(命名).properties [自定义的配置文件]

相同配置依然还是放在application.properties中

application-dev.properties [开发环境的配置文件] application-test.properties [测试环境的配置文件] application-pro.properties [生产环境的配置文件]

激活对应配置文件:

第一种:配置文件内

#激活对应环境的配置文件spring.profiles.active="命名"
spring.profiles.active=dev

第二种:命令行使用

java –jar xxx.jar --spring.profiles.active=dev

注册web组件|过滤器

自理解

将ssm的xml配置文件改为类中声明使用

web组件表示的就是servlet,filter组件。

  1. 创建一个Servlet
    public class MyServlet extends HttpServlet {@Overrideprotected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {System.out.println("经过MyServlet");}
    }
    ​
    public class MyFilter implements javax.servlet.Filter {@Overridepublic void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {System.out.println("经过DoFilter");}
    }

  1. 创建一个配置类
    @Configuration //表示该类为配置类,等价于之前的xml配置文件
    public class MyConfig {
    ​@Bean //等价于<bean标签.public ServletRegistrationBean  myServlet(){ServletRegistrationBean bean=new ServletRegistrationBean();bean.setServlet(new MyServlet());bean.setName("my");bean.setLoadOnStartup(1);bean.addUrlMappings("/my");return bean;}
    ​@Beanpublic FilterRegistrationBean myFilter() {FilterRegistrationBean bean = new FilterRegistrationBean();bean.setFilter(new MyFilter());bean.setName("filter");bean.addUrlPatterns("/*");return bean;}
    }

整合第三方框架:

整合mybatis
引入依赖
<dependencies>
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--mysql的驱动依赖 3.-->
<dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId>
</dependency>
​
<!--mybatis和springboot整合的jar.-->
<dependency><groupId>org.mybatis.spring.boot</groupId><artifactId>mybatis-spring-boot-starter</artifactId><version>3.0.3</version>
</dependency>
​
​
<dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><optional>true</optional>
</dependency>
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope>
</dependency>
</dependencies>
​
配置文件
spring.application.name=qy174-springboot-mybatis
​
#数据源的信息
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/qy174-springboot?serverTimezone=Asia/Shanghai
spring.datasource.username=root
spring.datasource.password=root
​
​
#配置mybatis映射文件的路径
mybatis.mapper-locations=classpath:mapper/*.xml
实体类
@Data
public class User {
private Integer userid;
private String username;
private String sex;
private Integer age;
}
dao
public interface UserDao {
int insert(User user);
int delete(Integer id);
int update(User user);
User select(Integer id);
List<User> selectAll();
}
映射文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ykq.dao.UserDao">
​
<insert id="insert">insert into user(username,age,sex) values(#{username},#{age},#{sex})
</insert>
<update id="update">update user set username=#{username},age=#{age},sex=#{sex} where userid=#{userid}
</update>
<delete id="delete">delete from user where userid=#{id}
</delete>
<select id="selectById" resultType="com.ykq.entity.User">select * from user where userid=#{id}
</select>
<select id="selectAll" resultType="com.ykq.entity.User">select * from user
</select>
​
</mapper>
service
@Service
public class UserServiceImpl implements UserService {
@Autowired
private UserDao userDao;
@Override
public R selectAll() {List<User> users = userDao.selectAll();return new R(200,"查询成功",users);
}
​
@Override
public R selectById(Integer id) {User user = userDao.selectById(id);if(user==null){return new R(500,"查询失败",null);}else{return new R(200,"查询成功",user);}
}
​
@Override
public R insert(User user) {int i = userDao.insert(user);if(i>0){return new R(200,"添加成功",null);}return new R(500,"添加失败",null);
}
​
@Override
public R update(User user) {int update = userDao.update(user);if (update>0){return new R(200,"修改成功",null);}return new R(500,"修改失败",null);
}
​
@Override
public R delete(Integer id) {int i = userDao.delete(id);if (i>0){return new R(200,"删除成功",null);}return new R(500,"删除失败",null);
}
}
​
controller
@RestController
@RequestMapping("/user")
public class UserController {
​
@Autowired
private UserService userService;
@GetMapping("/list")
public R list() {return userService.selectAll();
}
​
//getById/1
@GetMapping("/getById")
public R getById(Integer id) {return userService.selectById(id);
}
​
@DeleteMapping("/deleteById")
public R deleteById(Integer id) {return userService.delete(id);
}
​
@PostMapping("/insert")
public R insert(@RequestBody User user) {return userService.insert(user);
}
​
@PutMapping("/update")
public R update(@RequestBody User user) {return userService.update(user);
}
}
​
问题集:
没有为dao生成代理实现类

方法1:

@SpringBootApplication
​
//使用该注释为dao包类内的mapper类生成代理实现类
@MapperScan(basePackages = {"com.gzx.dao"})
​
public class Demo1Application {
​public static void main(String[] args) {SpringApplication.run(Demo1Application.class, args);}
​
}

方法2:

//在需要生成的mapper类代理实现类中写该注释
@Mapping
NoClassDefFoundError: 导包异常

java,lang.NoClassDefFoundError:org/springframework/aot/AoDetecor

mybatis和springboot整合的版本太高。

DispatcherServletAutoConfiguration类:

//创建Servlet注册器-[DispatchServlet以及路径]
DispatcherServletRegistrationBean registration = new DispatcherServletRegistrationBean(dispatcherServlet,webMvcPrpert...)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/46191.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java中常用的util类库在Maven

Java中常用的util类库在Maven项目中通常以依赖的形式引入。以下是一些常用的util库及其Maven依赖。 Apache Commons Lang 3: 提供了很多工具类&#xff0c;如StringUtils, ArrayUtils等。 <dependency><groupId>org.apache.commons</groupId><artifactI…

new Date() 是 JavaScript 中用来创建日期和时间对象的构造函数。它能够生成当前日期和时间,或者根据提供的参数生成特定的日期和时间对象

new Date() 是 JavaScript 中用来创建日期和时间对象的构造函数。它能够生成当前日期和时间&#xff0c;或者根据提供的参数生成特定的日期和时间对象。以下是关于 new Date() 的详细说明&#xff0c;包括如何使用不同参数来创建日期对象以及如何操作日期对象。 创建 Date 对象…

RISC-V在线反汇编工具

RISC-V在线反汇编工具&#xff1a; https://luplab.gitlab.io/rvcodecjs/#q34179073&abifalse&isaAUTO 不过&#xff0c;似乎&#xff0c;只支持RV32I、RV64I、RV128I指令集&#xff1a;

ControlNet作者新作Paints-Undo:一键模拟人类绘画过程,再也没人敢说你的图是生成的了!

ControlNet作者敏神又有新项目了。 Paints-Undo 可以生成模拟人类绘画过程的动画。支持输入单图倒推出绘制这个图片某一步的过程&#xff0c;也可以给两张图&#xff0c;生成一个绘制过程动画。 再有人说你的图是生成的就把这个拿给他看&#xff0c;哈哈。下面先看一下展示的…

【JUC】使用CompletableFuture执行异步任务

文章目录 Future接口介绍Future接口常用实现类FutureTaskFuture接口能干什么Future接口相关架构FutureTask初步使用Future编码实战和优缺点分析优点缺点获取结果的方式不优雅结论 完成一些复杂的任务 CompletableFuture对Future的改进CompletableFuture为什么会出现Completable…

解决nginx代理静态资源刷新后404问题

背景 在公司的项目中&#xff0c;有一个管理系统&#xff0c;大致的逻辑是通过nginx代理的静态资源&#xff0c; 正常页面跳转是没有问题的&#xff0c;有的时候我们会使用回车或者F5进行 页面刷新的时候都会出现404问题。 解决 这种我怀疑是nginx的配置不到位的问题。 我在本…

数据库管理-第218期 服务器内存(20240711)

数据库管理218期 2024-07-11 数据库管理-第218期 服务器内存&#xff08;20240711&#xff09;1 内存2 ECC内存3 原理3.1 多副本传输3.2 纠错码3.3 汉明码 总结 数据库管理-第218期 服务器内存&#xff08;20240711&#xff09; 作者&#xff1a;胖头鱼的鱼缸&#xff08;尹海文…

华为生成树协议技术概述

生成树协议&#xff08;Spanning Tree Protocol&#xff0c;STP&#xff09;是一种网络协议&#xff0c;旨在防止以太网网络中发生环路。环路会导致广播风暴、MAC地址表混乱等问题&#xff0c;从而严重影响网络性能和稳定性。华为交换机支持多种生成树协议&#xff0c;包括STP、…

数据库第六次

视图 salary decimal(10,2) not null default 0 comment ‘工资’, address varchar(200) not null default ‘’ comment ‘通讯地址’, dept_id int comment ‘部门编号’ ); create index idx_name on emp(emp_name); create index idx_birth on emp(birth); create index…

鸿蒙开发:Universal Keystore Kit(密钥管理服务)【密钥删除(ArkTS)】

密钥删除(ArkTS) 为保证数据安全性&#xff0c;当不需要使用该密钥时&#xff0c;应该删除密钥。 开发步骤 以删除HKDF256密钥为例。 确定密钥别名keyAlias&#xff0c;密钥别名最大长度为64字节。初始化密钥属性集。用于删除时指定密钥的属性TAG&#xff0c;比如删除的密钥…

【java】力扣 合并k个升序链表

文章目录 题目链接题目描述思路代码 题目链接 23.合并k个升序链表 题目描述 给你一个链表数组&#xff0c;每个链表都已经按升序排列。 请你将所有链表合并到一个升序链表中&#xff0c;返回合并后的链表 思路 我在这个题里面用到了PriorityQueue(优先队列) 的知识 Prio…

顶顶通呼叫中心中间件实现随时启动和停止质检(mod_cti基于FreeSWITCH)

文章目录 前言联系我们拨号方案启动停止ASR执行FreeSWITCH 命令接口启动ASR接口停止ASR接口 通知配置cti.json配置质检结果写入数据库 前言 顶顶通呼叫中心中间件的实时质检功能是由两个模块组成&#xff1a;mod_asr 和 mod_qc。 mod_asr&#xff1a;负责调用ASR将用户们在通…

算法训练营day08 字符串(反转,替换,综合运用(逻辑+反转))

&#x1f4a1; 解题思路 &#x1f4dd; 确定输入与输出&#x1f50d; 分析复杂度&#x1f528; 复杂题目拆分 &#xff1a;严谨且完整 地拆分为更小的可以解决的子问题&#xff08;字符的逻辑拆分&#xff09;–&#xff08;多总结&#xff09;&#x1f4ad; 选择处理逻辑&…

进程通信(1):无名管道(pipe)

无名管道(pipe)用来具有亲缘关系的进程之间进行单向通信。半双工的通信方式&#xff0c;数据只能单向流动。 管道以字节流的方式通信&#xff0c;数据格式由用户自行定义。 无名管道多用于父子进程间通信&#xff0c;也可用于其他亲缘关系进程间通信。 因为父进程调用fork函…

Git 2.45.2源码安装

环境 Centos 7 安装环境依赖 $ yum install curl-devel gcc-c zlib zlib-devel perl-ExtUtils-MakeMaker package下载git $ wget https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.45.2.tar.gz $ tar -xzvf git-2.45.2.tar.gz安装git $ cd git-2.45.2 ./…

Docker修改国内镜像源

如果docker已将安装好 参考&#xff1a;https://github.com/cmliu/CF-Workers-docker.io sudo mkdir -p /etc/dockercd /etc/dockersudo vim daemon.json #输入以下内容 { "registry-mirrors": ["https://docker.fxxk.dedyn.io"] } #重启docker服务 su…

开发个人Ollama-Chat--10 绑定域名

开发个人Ollama-Chat–10 绑定域名 域名购买最好找正规的渠道购买&#xff0c;不要因贪图小便宜而多走很多的弯路。我就是第一次购买域名&#xff0c;到了一个坑壁的平台"西部数码"&#xff0c;SSL证书申请了2个月&#xff0c;没下来&#xff0c;客服也贼不专业&…

猫头虎:什么是内耗?

猫头虎 &#x1f42f; 建联猫头虎&#xff0c;商务合作&#xff0c;产品评测&#xff0c;产品推广&#xff0c;个人自媒体创作&#xff0c;超级个体&#xff0c;涨粉秘籍&#xff0c;一起探索编程世界的无限可能&#xff01; 摘要 内耗是指在工作或学习过程中&#xff0c;个…

视频转文字、语音转文字助手 — 免费、支持多种语言

在快节奏的数字时代&#xff0c;时间就是金钱&#xff0c;效率就是生命。当您的双手被束缚在键盘上&#xff0c;当您需要快速整理会议记录&#xff0c;或是将那些宝贵的音频和视频资料转化为可编辑的文字&#xff0c;「想转就转语音转文字助手」就是您的得力助手&#xff01; …

突破与创新:Vue.js 创始人 尤雨溪 2024 年度技术前瞻

本文将深入探讨以下主题的 尤雨溪 见解&#xff1a;Vite 5对Vue的影响、宏、vapor模式、常见误解、新特性或功能、未来版本对Option API的支持、VitePress等。 . 2.尤大的问答环节 2.1. Vite 5如何提升Vue的性能&#xff1f; Vite在提高性能方面的工作通常是针对Vite本身的。然…