spring的三种主要的装配机制
本文中使用一个接口类UserInterface以及接口的实现类UserInterfaceImpl,调用接口UserInterface的UserCall类来做示例。 package com.springbean; public interface UserInterface { void userMethod(); } package com.springbean.impl; import com.springbean.UserInterface; public class UserInterfaceImpl implements UserInterface{ public void userMethod() { System.out.println("UserInterfaceImpl - userMethod()"); } } package com.springbean; import java.util.List; public class UserCall { private UserInterface ui; private String username; private List<String> tags; /** * getter and setter */ } 在下面,我们即将为 UserCall 注入一个 UserInterface 的实现类,一个 字符常量