KKKPJSKEY

欢迎!

从OneNote搬运写的一些个人笔记,水平一般,能力有限,请多指教!
暂时仅维护中文,其它语言暂不开发,请不要切换语言!
如果您觉得我写的不错或者有懂其他语言的朋友想帮忙翻译。
请通过下面的图标链接联系我,我将不胜感激!

Spring注入接口实现错误

现象 Service下有接口 1 2 3 4 5 @Service public interface Common { String a = "a"; void sout(String s); } 和实现关系 1 2 3 4 5 6 7 8 @Service public class AImpl implements Common{ @Override public void sout(String s) { System.out.println(a); System.out.println(s); } } 在Controlle