问答详情
源自:4-5 Spring Bean装配之基于Java的容器注解说明——@Bean

@Configuration如何使用

使用这个注解,如何获取spring IOC容器的实例对象

ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");

使用这个加载,报错。

CGLIB is required to process @Configuration classes. Either add CGLIB to the classpath or remove the following @Configuration bean definitions: [myConfig]

提问者:噼喱啪啦 2017-09-04 22:36

个回答

  • jarWorker
    2018-11-29 15:07:48

    <?xml version="1.0" encoding="UTF-8"?>

    <beans></beans>相当于这个

  • 瞪大眼睛学不会
    2017-11-29 23:51:37

    是不是xml文件中没有写<context:component-scan>这个

  • 稻子凡
    2017-09-05 09:56:11

    http://blog.csdn.net/vvhesj/article/details/47661001