日常记录
登录
日常记录
归档
2025 年 10 月
JdbcTemplate手动事务
2025-10-10
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.jdbc.cor
pom maven 打包
2025-10-10
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <!
js中对象数据类型的深拷贝方法(5种)
2025-10-10
转自:https://blog.csdn.net/qq_52372296/article/details/123721413 一、使用JSON暴力转换 通过JSON.stringify() 和 JSON.parse() 将对象转为字符串之后在转为对象。 var obj = {name:'123'};
idea services 无法加载 spring boot项目
2025-10-10
1、run > edit configurations 2、选中templates,查看configurations available in services 3、点击“+”,选中“spring boot” 4、apply > ok
application.properties文件说明
2025-10-10
# =================================================================== # COMMON SPRING BOOT PROPERTIES # # This sample file is provided as a guideline.
pom文件说明
2025-10-10
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.ap
支付对接常用的加密方式介绍以及java代码实现(转载)
2025-10-10
转自:https://www.cnblogs.com/Jcloud/p/17104088.html 一、术语表: 1.对称算法 加密解密密钥是相同的。这些算法也叫秘密密钥算法或单密钥算法,它要求发送者和接收者在安全通信之前,商定一个密钥。对称算法的安全性依赖于密钥,泄漏密钥就意味着任何人都能对消息进
Java标准库资源
2025-10-10
public class ShowProperties { public static void main(String[] args) { System.getProperties().list(System.out); System.out.println
HTML置灰
2025-10-10
html { filter: grayscale(100%); filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); -webkit-filter: grayscale(100%); -
你真的会使用数据库的索引吗?
2025-10-10
千万级数据表索引和无索引查询效率对比 现在有一个学生表student,有1000万条数据 未加索引,查询class_id=2的学生信息的耗时:SELECT * FROM student WHERE class_id=2 花费了3.357秒
上一页
1 / 5
2 / 5
3 / 5
4 / 5
5 / 5
下一页