03 2025 档案
摘要:添加依赖 手动 <?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
阅读全文
摘要:SpringMVC开发步骤 添加依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSche
阅读全文
摘要:IOC/DI配置管理第三方bean 管理druid数据源 pom.xml引入依赖 <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <v
阅读全文
摘要:添加依赖 <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>5.2.10.RELEASE</version> </de
阅读全文
摘要:AOP AOP(Aspect Oriented Programming)面向切面编程,一种编程范式指,导开发者如何组织程序结构。 作用:在不惊动原始设计的基础上为其进行功能增强,底层使用代理模式实现。 组成 - 连接点JoinPoint:所有方法 - 切入点Pointcut:匹配连接点的表达式 -
阅读全文
摘要:常用命令 登录:psql -U username database 密码相关 密码加密方式有md5、scram-sha-256,新版本默认是scram-sha-256 查看加密方式:show password_encryption; 查看加密方式配置信息:SELECT name,setting,so
阅读全文