2

我在做使用spring mvc的servlet,我看不到我的網站。我在下面發佈了我的web.xml,mvc-dispatcher-servlet.xml和控制器類。一切似乎都很好,但是當我輸入「localhost:8080」時,我得到了404 http status The requested resource is not available。我錯過了什麼?爲什麼我看不到我的網站,並獲得HTTP狀態404?

的web.xml:

<web-app version="2.4" 
     xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> 

    <display-name>Weather</display-name> 
    <servlet> 
     <servlet-name>mvc-dispatcher</servlet-name> 
     <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
     <load-on-startup>1</load-on-startup> 
    </servlet> 
    <servlet-mapping> 
     <servlet-name>mvc-dispatcher</servlet-name> 
     <url-pattern>/</url-pattern> 
    </servlet-mapping> 
</web-app> 

MVC-調度-servlet.xml中:

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

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

<jpa:repositories base-package="com.springapp.mvc"/> 

<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean"> 
    <property name="persistenceUnitName" value="defaultPersistenceUnit"/> 
</bean> 

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

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

控制器類:

@Controller 
public class HomeController 
{ 
    Weather weather; 

    @RequestMapping(value = "/", method = RequestMethod.GET) 
    public String infoWeather(ModelMap model, HttpServletRequest req) { 

     if (!model.containsAttribute("location") && !model.containsAttribute("weather")) { 
      Language.getInstance().setLanguage(LanguageManager.getLanguage(new Locale(System.getProperty("user.language")))); 
      Location location = LocationManager.getLocation(req); 
      model.addAttribute("location", location); 
      weather = WeatherManager.getWeather(location); 
      model.addAttribute("weather", weather); 
     } 

     if (!model.containsAttribute("destination")) 
      model.addAttribute("destination", new Destination()); 

     return "index"; 
    } 

    @RequestMapping(value = "/search", method = RequestMethod.POST) 
    public String findDestination(@ModelAttribute("destination") Destination destination, BindingResult result, RedirectAttributes redirectAttrs) { 
     destination = DestinationManager.getDestination(destination.getAddress()); 
     weather = WeatherManager.getWeather(destination); 
     redirectAttrs.addFlashAttribute("weather", weather); 
     return "redirect:/"; 
    } 
} 
+0

很可能你的應用程序在你的servlet容器上有一個上下文路徑。所以你不會在'localhost:8080 /'上訪問它,而是在'localhost:8080/that-path'上訪問它。 –

+0

我該如何檢查? – Vardius

+0

intellij想法它是 – Vardius

回答

1

我見下文點在這裏,這需要待修:

  1. 一旦你部署在tomcat的webapp目錄下你的應用程序中,URL應該像http://localhost:8080/<web-app-name>/<your servlet>

  2. 或者你可以添加一個歡迎頁面,並檢查其是否工作。爲此,您需要在web-xml中添加歡迎頁面設置。有關線索,請參見This post

如果不工作,請與您的戰爭部署共享你的tomcat目錄樹;和戰爭文件目錄結構

注意:您應該能夠使用zip實用程序擴展您的戰爭。

+0

這裏是war文件'E:\ IntelliJ Projects \ What2Wear \ target' 這裏是tomcat :'E:\ IntelliJ Projects \ apache-tomcat-7.0.37' http://oi44.tinypic.com/3039qo5.jpg – Vardius

+0

你有沒有在tomcat中部署你的戰爭並重新啓動tomcat?您的戰爭位於工作區的目標位置,但您需要將其添加到Tomcat服務器。如果在工作區內配置了tomcat服務器,則可以嘗試查找添加/刪除模塊類型的菜單。否則,從工作位置複製戰爭,粘貼到tomcat的web應用程序位置,然後手動啓動服務器。另外,在服務器啓動時查找日誌,戰爭部署應該是成功的,以訪問您的網頁和servlet。 – gyan

+0

我的服務器日誌: '[2013-09-05 06:50:30,869]神器What2Wear_SpringMVC:戰爭爆炸:神器正在部署中,請稍等... wrz 05,2013 6:50:31 PM org.apache。 catalina.loader.WebappClassLoader validateJarFile INFO:validateJarFile(E:\ IntelliJ Projects \ What2Wear \ target \ What2Wear \ WEB-INF \ lib \ servlet-api-2.5.jar) - jar未加載。請參閱Servlet規範2.3,第9.7.2節。違規類:javax/servlet/Servlet。類 [2013-09-05 06:50:32,364]神器What2Wear_SpringMVC:戰爭爆炸:神器部署成功' – Vardius

相關問題