上一页 1 2 3 4 5 6 7 ··· 9 下一页

2024年1月16日

摘要: 1 引入相关依赖 <dependencies> <!--spring jdbc Spring 持久化层支持jar包--> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> 阅读全文

posted @ 2024-01-16 22:24 弯弓射雕的男人 阅读(18) 评论(0) 推荐(0) 编辑

2024年1月15日

摘要: <?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:sc 阅读全文

posted @ 2024-01-15 23:39 弯弓射雕的男人 阅读(41) 评论(0) 推荐(0) 编辑

摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文

posted @ 2024-01-15 12:28 弯弓射雕的男人 阅读(6) 评论(0) 推荐(0) 编辑

摘要: 1. 添加依赖 2. 准备被代理的目标资源 2.1接口 2.2实现类 3.切面类 3.1 切入点 3.2 通知类型 1添加依赖 spring-aop 和 spring-aspects <!--spring aop依赖--> <dependency> <groupId>org.springframew 阅读全文

posted @ 2024-01-15 00:34 弯弓射雕的男人 阅读(5) 评论(0) 推荐(0) 编辑

2024年1月13日

摘要: 测试方法 public class TestAopProxy { public static void main(String[] args) { ProxyFactory proxyFactory = new ProxyFactory(new CalculatorLogImpl()); Calcu 阅读全文

posted @ 2024-01-13 04:43 弯弓射雕的男人 阅读(7) 评论(0) 推荐(0) 编辑

摘要: package com.atguigu.Aop; public class CalculatorLogImpl implements Calculator{ @Override public int add(int i, int j) { System.out.println("[日志] add 方 阅读全文

posted @ 2024-01-13 04:02 弯弓射雕的男人 阅读(6) 评论(0) 推荐(0) 编辑

2024年1月12日

摘要: . java 反射 Java反射机制是在运行状态中,对于任意一个类,都能够知道这个类的所有属性和方法;对于任意一个对象,都能够调用它的任意方法和属性;这种动态获取信息以及动态调用对象方法的功能称为Java语言的反射机制。简单来说,反射机制指的是程序在运行时能够获取自身的信息。 要想解剖一个类,必须先 阅读全文

posted @ 2024-01-12 23:18 弯弓射雕的男人 阅读(6) 评论(0) 推荐(0) 编辑

摘要: @Resource注解 和 @Autowired注解 有什么区别? @Resource注解是JDK扩展包中的,也就是说属于JDK的一部分。所以该注解是标准注解,更加具有通用性。(JSR-250标准中制定的注解类型。JSR是Java规范提案。) @Autowired注解是Spring框架自己的。 @R 阅读全文

posted @ 2024-01-12 18:28 弯弓射雕的男人 阅读(85) 评论(0) 推荐(0) 编辑

摘要: 1-添加依赖 2-开启组件扫描 <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http:/ 阅读全文

posted @ 2024-01-12 02:12 弯弓射雕的男人 阅读(9) 评论(0) 推荐(0) 编辑

2024年1月11日

摘要: 1.构造方法注入 在xml配置文件中 2.Set注入 在Java代码中 在实体类中必须有set方法 3.复杂类型注入 数组型数据 数组类型 <bean id="emp" class="com.atguigu.spring6.iocxml.ditest.Emp"> <!--普通属性--> <prope 阅读全文

posted @ 2024-01-11 23:51 弯弓射雕的男人 阅读(174) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 9 下一页