日期:2014-05-18  浏览次数:20711 次

linux环境下tomcat容器无法启动
附图报错信息

下面是图片上面说的application.xml文件,

<?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:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
    http://www.springframework.org/schema/tx 
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
    http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-2.5.xsd">

    <context:component-scan base-package="cn.sh.ideal.dao" />
    <context:component-scan base-package="cn.sh.ideal.service" />

<bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName">
      <value>java:comp/env/jdbc/igrp</value>
</property>
</bean>

<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource" />
</bean>

<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource" />
</bean>


<tx:annotation-driven transaction-manager="transactionManager"/>

</beans>

有碰到过这方面问题的朋友帮帮忙!

------解决方案--------------------
applicationContent.xml贴的不全吧,贴出caUrl这一块的
------解决方案--------------------
<value>java:comp/env/jdbc/igrp</value>这个里面的&都改为&amp;
------解决方案--------------------
学习了,顶一下