Spring - app simples [ajudem, por favor]

Pessoal,

Estou tentando usar Spring na minha aplicação, mas não estou conseguindo, abaixo estou colocando o meu WEB-INF/applicationContext.xml e o erro que está dando ao fazer deploy no JBoss, usando plugin no eclipse:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd">
           
	
	<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
		<property name="dataSource" ref="dataSource"/>
		<property name="jpaVendorAdapter">
			<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
				<property name="database" value="MYSQL" />
				<property name="showSql" value="true"/>
				<!--property name="generateDdl" value="false"/-->
				<!--property name="databasePlatform" 
					value="oracle.toplink.essentials.platform.database.HSQLPlatform"/-->
			</bean>
		</property>
		<property name="loadTimeWeaver">
			<bean class="org.springframework.instrument.classloading.SimpleLoadTimeWeaver"/>
		</property>
	</bean>

	<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
		<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
		<property name="url" value="jdbc:mysql://****/***"/>
		<property name="username" value="***" />
		<property name="password" value="***" />
	</bean>

	<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
		<property name="entityManagerFactory" ref="entityManagerFactory"/>
		<property name="dataSource" ref="dataSource"/>
	</bean>
	
</beans>

erro:

Ontem o GUJ deu uma travada, então estou reavivando o tópico…

<property name="url" value="jdbc:mysql://****/***"/>   
        <property name="username" value="***" />   
        <property name="password" value="***" />

???