2012-05-30 1432 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應用程序未能初始化。不過,你一定會注意到日誌裏的東西。