Spring Bean 生命周期前言Spring Bean 的生命周期在整个 Spring 中占有很重要的位置,掌握这些可以加深对 Spring 的理解。
首先看下生命周期图:
再谈生命周期之前有一点需要先明确:
Spring 只帮我们管理单例模式 Bean 的完整生命周期,对于 prototy
...
SQL 优化负向查询不能使用索引1select name from user where id not in (1,3,4);
应该修改为:
1select name from user where id in (2,5,6);
前导模糊查询不能使用索引如:
1select name from us
...