<bean id="obstacle1" class="C:\launchCodeFiles\src\main\java\RunMario.java">
改为
<bean id="obstacle1" class="RunMario">
class路径为(包名+类名)
1<?xml version="1.0" encoding="UTF-8"?> 2<beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xsi:schemaLocation="http://www.springframework.org/schema/beans 5 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 6 7 <bean id="chineseId" class="com.jin.Chinese"> 8 <property name ="axe" ref="stoneAxeId"></property> 9 </bean> 10 <bean id="stoneAxeId" class="com.jin.StoneAxe"> 11 </bean> 12</beans>