动态代理的具体实现?用到的接口和类有哪些?
中介者模式的实现?对象图是怎样的?里面包含的方法是什么?
状态模式,定期回顾下。
===和==区别;null和undefined区别
闭包;自我调用函数的写法,目的是什么?
jquery中,对对象可以进行深度拷贝,参数设置程true
垃圾回收和内存管理
threadlocal模型
spring的传播特性
copyonreadorwritearrylist
volatile
数据库的特征(ACID)
隔离性,我们oracle数据库的隔离级别是什么?如何在spring中设置(能设置么)
<
bean
id
=
"transactionInterceptor"
class
=
"org.springframework.transaction.interceptor.TransactionInterceptor"
>
<
property
name
=
"transactionManager"
ref
=
"transactionManager"
/>
<!-- 在这里加就有错,要再哪里加啊???????????? -->
<
property
name
=
"isolationLevelName"
>
<
value
>ISOLATION_REPEATABLE_READ</
value
>
</
property
>
<
property
name
=
"transactionAttributes"
>
<
props
>
<
prop
key
=
"*"
>PROPAGATION_REQUIRED,-Exception</
prop
>
<
prop
key
=
"find*"
>PROPAGATION_REQUIRED,readOnly</
prop
>
<
prop
key
=
"query*"
>PROPAGATION_REQUIRED,readOnly</
prop
>
<
prop
key
=
"get*"
>PROPAGATION_REQUIRED,readOnly</
prop
>
</
props
>
</
property
>
</
bean
>
nio
spring的回顾
数据库调优
触发器
索引
高并发的解决方案