2020年9月22日
摘要:
动态代理两种方式: jdk的接口实现动态代理JdkDynamicAopProxy; Istar jj = (Istar) Proxy.newProxyInstance(baoBao.getClass().getClassLoader(), baoBao.getClass().getInterface
阅读全文
posted @ 2020-09-22 20:00
JustCrazy
阅读(97)
推荐(0)
2020年9月19日
摘要:
factory源码思路 package com.zl.factory; import java.io.InputStream; import java.util.HashMap; import java.util.Map; import java.util.Properties; import ja
阅读全文
posted @ 2020-09-19 10:29
JustCrazy
阅读(470)
推荐(1)
2020年9月17日
摘要:
从settings进去,这里可以设置idea的默认浏览器,默认是custom 这里选first listed tomcat里面设置浏览器,这也尽量不要选择default(可能会有冲突),默认是这样,更改成自己的浏览器路径
阅读全文
posted @ 2020-09-17 16:10
JustCrazy
阅读(7407)
推荐(2)
2020年9月15日
摘要:
为什么这里只能是String类型,包括Object,StringBuffer等都不可行。 先看给大家看一下这段程序 public class Test05 { public static void main(String[] args) { System.out.println(666); Syst
阅读全文
posted @ 2020-09-15 17:02
JustCrazy
阅读(524)
推荐(1)
2020年9月8日
摘要:
通过三层架构来对数据库内容进行增删改查。 后续增加了过滤器,三层架构改成面向接口的方法,最后化成终结版
阅读全文
posted @ 2020-09-08 22:39
JustCrazy
阅读(262)
推荐(2)
2020年9月5日
posted @ 2020-09-05 11:08
JustCrazy
阅读(168)
推荐(2)
2020年9月1日
摘要:
import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; public class Test01 { public static void main(S
阅读全文
posted @ 2020-09-01 16:55
JustCrazy
阅读(139)
推荐(2)
2020年8月29日
摘要:
pl/sql记住密码设置、 My objects设置 、 tab键设置 、 字体、背景颜色等设置 、 窗口使用。
阅读全文
posted @ 2020-08-29 10:23
JustCrazy
阅读(920)
推荐(1)
2020年8月28日
摘要:
-- 触发器create table emp_bak as select * from emp where 1=2;-- 行级触发器create or replace trigger tbefore update on emp -- before 触发器for each row -- 行级触发器fo
阅读全文
posted @ 2020-08-28 17:26
JustCrazy
阅读(172)
推荐(1)
2020年8月27日
摘要:
-- 创建一个存储过程,or replace 可以省略,省略后仅创建之前没有的create or replace procedure pis -- 相当于declare,is也可改成as cursor cur_emp is select * from emp;begin for v_emp in c
阅读全文
posted @ 2020-08-27 20:49
JustCrazy
阅读(317)
推荐(1)