为了账号安全,请及时绑定邮箱和手机立即绑定

在写beanAnnotation时的问题

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

<beans xmlns="http://www.springframework.org/schema/beans"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xmlns:context="http://www.springframework.org/schema/context"

    xsi:schemaLocation="http://www.springframework.org/schema/beans

        http://www.springframework.org/schema/beans/spring-beans.xsd

        http://www.springframework.org/schema/context

        http://www.springframework.org/schema/context/spring-context.xsd" >

        

        <context:component-scan base-package="main.java.beanAnnotation"></context:component-scan>

        

 </beans>


package main.java.beanAnnotation;


import org.springframework.stereotype.Component;



@Component

public class BeanAnnotation {

public void say(String word){

System.out.println("Annotation"+word+this.hashCode());

}

}


import test.ioc.base.UnitTestBase;


public class TestBeanAnnotation extends UnitTestBase{

public TestBeanAnnotation(){

super("classpath:Spring-beanscope.xml");

}

@Test

public void testAnnotation(){

BeanAnnotation test=super.getBean("beanAnnotation");

test.say("第一个bean啊");

}


}



代码如上,报错:Unexpected exception parsing XML document from class path resource [Spring-beanscope.xml]; 


求解答

正在回答

2 回答

lt;a?href="javascript:void(0);"gt;lt;/agt;这样也可以。#可以用于完成top的回到顶部操作,而void(0)是指空操作w3cp

0 回复 有任何疑惑可以回复我~

super.getBean("beanAnnotation")前要加强制类型转换,应该这样写:(BeanAnnotation)super.getBean("beanAnnotation")

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

在写beanAnnotation时的问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信