2012-05-30 1423 views
0

我正在开发一个spring mvc应用程序。直到现在我只是调用控制器,而控制器又是
显示login.jsp页面。该项目运行成功。在spring mvc中获取“请求的资源不可用”的原因是什么?

但是,当我想补充与Hibernate的数据库连接,没有什么在web.xml中改变
class.I添加新的东西到我的调度员servlet.xml中,给需要的注释来我的DTO和
服务类。

现在,当我运行该项目时,它说The Requested Resource is not available
我想,如果有我的调度员servlet.xml中的任何问题,由于添加关于
休眠连接和映射新的东西,那么至少我的index.jsp这是<欢迎文件>应该有
了叫。但是没有。

任何人都可以指定我得到这个问题的可能原因是什么。
这里是我的调度员servlet.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:aop="http://www.springframework.org/schema/aop" 
xmlns:context="http://www.springframework.org/schema/context" 
xmlns:jee="http://www.springframework.org/schema/jee" 
xmlns:lang="http://www.springframework.org/schema/lang" 
xmlns:p="http://www.springframework.org/schema/p" 
xmlns:tx="http://www.springframework.org/schema/tx" 
xmlns:util="http://www.springframework.org/schema/util" 
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd 
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd 
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd 
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd 
    http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd 
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd 
    http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> 

<context:component-scan base-package="com.alw" /> 

<bean id="viewResolver" 
    class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
    <property name="prefix"> 
     <value>/WEB-INF/pages/</value> 
    </property> 
    <property name="suffix"> 
     <value>.jsp</value> 
    </property> 
</bean> 

//codes below I added later 

<bean id="propertyConfigurer" 
    class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" 
    p:location="/WEB-INF/jdbc.properties" /> 

<bean id="dataSource" 
    class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" 
    p:driverClassName="${jdbc.driverClassName}" 
    p:url="${jdbc.databaseurl}" p:username="${jdbc.username}" 
    p:password="${jdbc.password}" /> 

<bean id="sessionFactory" 
    class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> 
    <property name="dataSource" ref="dataSource" /> 
    <property name="configLocation"> 
     <value>classpath:hibernate.cfg.xml</value> 
    </property> 
    <property name="configurationClass"> 
     <value>org.hibernate.cfg.AnnotationConfiguration</value> 
    </property> 
    <property name="hibernateProperties"> 
     <props> 
      <prop key="hibernate.dialect">${jdbc.dialect}</prop> 
      <prop key="hibernate.show_sql">true</prop> 
      <prop key="hibernate.current_session_context_class"> 
       thread 
      </prop> 
     </props> 
    </property> 
</bean> 

<tx:annotation-driven /> 
<bean id="transactionManager" 
    class="org.springframework.orm.hibernate3.HibernateTransactionManager"> 
    <property name="sessionFactory" ref="sessionFactory" /> 
</bean> 

+0

你在哪里把你的index.jsp文件放在目录结构中? –

+0

如果可能,还显示web.xml文件 –

回答

0

的问题可能是因为您的调度员-servlet.xml中的视图解析代码 -

<bean id="viewResolver"  class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
    <property name="prefix"><value>/WEB-INF/pages/</value></property> 
    <property name="suffix"><value>.jsp</value></property> 
</bean> 

当时这个代码还你做出改变之前是否存在?

+0

它已经在那里。他在调度程序xml中提到过。 –

0

这通常意味着启动Web应用程序时出现上游错误,并且整个Web应用程序未能初始化。不过,你一定会注意到日志里的东西。