2017年4月19日

工厂模式

摘要: package cn.itcast.factory; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.lang.reflect.Constructor; import java.lang.reflect.Field; impo... 阅读全文

posted @ 2017-04-19 17:13 绿茵好莱坞 阅读(127) 评论(0) 推荐(0) 编辑

观察者设计模式

摘要: package cn.itcast.observer; //人 是要根据天气做出相应的处理的。"晴天","雾霾","刮风","冰雹","下雪" //天气怎么来呢? //public class Emp { public class Emp implements Weather{ String name; public Emp(String name) { ... 阅读全文

posted @ 2017-04-19 16:57 绿茵好莱坞 阅读(248) 评论(0) 推荐(0) 编辑

day38 21-今天的内容总结

摘要: 以前我们在web层里面去调Service再在Service里面去调DAO是一路new过去的,在web层里面new Service,然后在Service里面new DAO.每次你都需要主动去找这个对象。但是现在Spring把这个对象弄好了交给你了给你送过来了。你想用它就用一下。你不需要去主动找那个类了 阅读全文

posted @ 2017-04-19 09:37 绿茵好莱坞 阅读(97) 评论(0) 推荐(0) 编辑

day38 20-Spring与Junit整合

摘要: package cn.itcast.test; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfig... 阅读全文

posted @ 2017-04-19 09:12 绿茵好莱坞 阅读(93) 评论(0) 推荐(0) 编辑

导航