background picture of the home page

yaemiko.live

风抓住我,又判我自由啦

周年庆精灵王奉神选择

精灵王 普王 加抗性格(开朗,慎重,淘气) 燕侠流 (删pp流) 性格 第一档,开朗、慎重、淘气 第二档,狂妄、悠闲、平衡 独一档,沉着、大胆、胆小 培养

thumbnail of the cover of the post

语法基础

💡 主 谓 宾 定(形容词属性成分) 状(副词属性成分) 补(名词or形容词属性成分) 💡 名词,形容词【修饰名词】,副词【修饰动词,形容词,其他副词】 💡 简单的五种句型 不管多么复杂的语法,一定要用简单句的思维来理解语法。最终都要通过简单句来理解句子,首先抛开枝叶,找到主干 修饰 eg1:

thumbnail of the cover of the post

AOP入门案例

依赖和配置 aop起步依赖 spring-context依赖下自动aop的依赖,除此之外,还需要导入Aspect的依赖 在第一张介绍过,由于Aspect的AOP做得比较完善,所以的spring直接采用了,所以需要额外导入依赖 <dependency> <groupId>org.spr

thumbnail of the cover of the post

啥是AOP?

AOP简介 首先来看一下这个获取一段代码执行10000次时间的程序 @Component public class BookDaoImpl implements BookDao { @Override public void save() { Long startTi

thumbnail of the cover of the post

Bean的生命周期

生命周期控制 自定义配置 public class BookDaoImpl implements BookDao { //表示bean创建前加载 public void init() { System.out.println("init..."); }

thumbnail of the cover of the post