Spring 自动装配及其注解
摘要:
一.属性自动装配 首先,准备三个类,分别是User,Cat,Dog。其中User属性拥有Cat和Dog对象。 1 package com.hdu.autowire; 2 3 public class User { 4 private Cat cat; 5 private Dog dog; 6 pri 阅读全文
posted @ 2019-03-19 21:10 cxhfuujust 阅读(525) 评论(0) 推荐(0) 编辑