
Spring 学习心得
福庆
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
一、Spring 入门IOC之前奏 面向接口编程
一、面向接口编程1、编写一个接口package com.imooc.ioc.interfaces;public interface OneInterface { public void say(String arg); }2、编写一个实现类package com.imooc.ioc.interfaces;public class OneInterfaceImpl implements OneIn...原创 2018-07-09 20:19:27 · 265 阅读 · 0 评论 -
二、Spring 入门IOC之前奏 用IOC替换接口编程
1、编写一个接口package com.imooc.ioc.interfaces; public interface OneInterface { public void say(String arg); } 2,编写一个实现类package com.imooc.ioc.interfaces; public class OneInterfaceImpl implements OneI...原创 2018-07-09 20:42:34 · 351 阅读 · 0 评论