这是Tomcat启动时报错的一部分:
信息: Starting Servlet Engine: Apache Tomcat/6.0.13
17:29:09,765 ERROR ContextLoader:205 - Context initialization failed
java.lang.IllegalArgumentException: Resource path [C:\Documents and
inistrator\妗岄潰] does not denote a directory
        at org.springframework.core.io.support.PathMatchingResourceP
er.retrieveMatchingFiles(PathMatchingResourcePatternResolver.java:49
        at org.springframework.core.io.support.PathMatchingResourceP
er.doFindMatchingFileSystemResources(PathMatchingResourcePatternReso
2)struts-cfg.xml配置如下:
<!-- 配置sessionFactory -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation">
<value>classpath:hibernate.cfg.xml</value>
</property>
</bean>

<!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref local="sessionFactory"/>
</property>
</bean>
    
    <!-- 配置事务特性  --> 
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
     <tx:attributes>
     <tx:method name="save*" propagation="REQUIRED"/>
     <tx:method name="update*" propagation="REQUIRED"/>
     <tx:method name="delete*" propagation="REQUIRED"/>
     <tx:method name="*" read-only="true"/>
     </tx:attributes>
    </tx:advice>    <!-- 配置那些类的方法进行事务管理--> 
    <aop:config>
     <aop:pointcut id="allManagerMethod" expression="execution (* com.jgala.control.dao.*.*(..))"/>
     <aop:advisor advice-ref="txAdvice" pointcut-ref="allManagerMethod"/>
    </aop:config>说明:我用的是string+struts+hibernat 框架,我在Myeclips开发环境下启动不报错,但是单独启动Tomcat服务就报以上错误,很是郁闷,请大侠帮帮忙分析一下,不胜感激.