2022年5月25日
摘要: //定义切入点 @Pointcut("execution(void com.itheima.dao.BookDao.update())") private void pt2(){} @Around("pt2()") public Object selectAround(ProceedingJoinP 阅读全文
posted @ 2022-05-25 15:05 cccuuuzzz 阅读(22) 评论(0) 推荐(0) 编辑
  2022年5月23日
摘要: aop的作用:再不更改源代码的基础上增强功能。 @Component @Aspect public class MyAdvice { @Pointcut("execution(void com.itheima.*.BookDao.update())") private void pt(){ } @B 阅读全文
posted @ 2022-05-23 10:27 cccuuuzzz 阅读(23) 评论(0) 推荐(0) 编辑
  2022年5月19日
摘要: 创建一个类SpringConfig @Configuration//证明这个类是spring的配置文件类 @ComponentScan("com.itheima")//扫描的哪些包下有注解相当于配置文件的 <context:component-scan base-package="com.ithei 阅读全文
posted @ 2022-05-19 16:03 cccuuuzzz 阅读(91) 评论(0) 推荐(0) 编辑
  2022年5月18日
摘要: UserDaoImpl中的代码,实现对name和age的注入 private String name; private int age; public void setName(String name) { this.name = name; } public void setAge(int age 阅读全文
posted @ 2022-05-18 14:59 cccuuuzzz 阅读(29) 评论(0) 推荐(0) 编辑
  2022年5月16日
摘要: #版本回退 git reset commitId --hard 阅读全文
posted @ 2022-05-16 11:13 cccuuuzzz 阅读(17) 评论(0) 推荐(0) 编辑
  2022年3月15日
摘要: 阅读全文
posted @ 2022-03-15 15:17 cccuuuzzz 阅读(4) 评论(0) 推荐(0) 编辑
  2022年3月14日
摘要: public static void main(String[] args) { // 包含 System.out.println("a".matches("[abc]")); System.out.println("z".matches("[abc]")); System.out.println( 阅读全文
posted @ 2022-03-14 11:29 cccuuuzzz 阅读(11) 评论(0) 推荐(0) 编辑
  2022年3月11日
摘要: 利用关键字 extends 实现继承关系 super 注意点 1、super调用父类的构造方法,必须在构造方法的第一个 2、super必须只能出现在子类的方法或者构造方法中 3、super和this不能同时调用构造方法 this注意点 代表的对象不同 this:本身调用者这个对象 super:代表父 阅读全文
posted @ 2022-03-11 09:08 cccuuuzzz 阅读(40) 评论(0) 推荐(0) 编辑
  2022年3月8日
摘要: 静态初始化和动态初始化 public static void main(String[] args) { //静态初始化 int[] a={1,2,3}; //将对象作为形参需要有类存在 Man[] mans={new Man(),new Man()}; //动态初始化,写入5说明这个数组的leng 阅读全文
posted @ 2022-03-08 10:15 cccuuuzzz 阅读(41) 评论(0) 推荐(0) 编辑
  2022年3月6日
摘要: 开始 public static void main(String[] args) { //最外层的for循环就是控制打印多少行 for (int i = 1; i <= 5; i++) {//i小于等于5说明打印5行 //里面第一个for循环是打印一个由上到下逐渐变小的直角三角形 for (int 阅读全文
posted @ 2022-03-06 11:55 cccuuuzzz 阅读(43) 评论(0) 推荐(0) 编辑