摘要:
使用java方式配置Spring 完全不使用xml 配置类 //@Configuration它也会被注册到Spring容器中,因为它本身也是一个@Component //@Configuration注解的类,被称为配置类,就相当于我们之前写的Beans.xml @Configuration publ 阅读全文
摘要:
使用注解需要导入的依赖 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSch 阅读全文
摘要:
环境搭建 public class person { private Dog dog; private Cat cat; private String name; public Dog getDog() { return dog; } public void setDog(Dog dog) { th 阅读全文