Я абсолютно новичок с Java и Spring, и я хочу учиться на примере.Не найдено сопоставления для HTTP-запроса с URI [/ myproject /] в DispatcherServlet с именем 'appServlet'
Я использую вне коробки конфигурации/установки
- Mac OSX
- SpringSource Tool Suite в качестве IDE
- Spring 2.8.1.RELEASE
- VFabric-дц -server-developer-2.6.1.RELEASE
Я попытался сгенерировать новый проект на основе проекта Spring Template Project. Затем я выбрал «Проект Spring MVC». Создается образец проекта. После этого, не изменяя ничего, я попытался выполнить страницу «home.jsp» через «Run As». Веб-сервер запускается и, наконец, я получил ошибку в консоли Tab.
отображение не найдено для запроса HTTP с URI [/ MyProject /] в DispatcherServlet с именем 'appServlet'
И этот другой выход в этих веб-страницах:
http://localhost:8080/myproject/WEB-INF/views/home.jsp
http://localhost:8080/myproject
Здесь вы можете увидеть изображение, как структурирован мой проект (авто созданы для STS):
Что не так?
Здесь Вы можете увидеть содержание web.xml файла:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Processes application requests -->
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
корневой context.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"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<!-- Root Context: defines shared resources visible to all other web components -->
</beans>
И, наконец, сервлет-context.xml имеет это содержание.
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="com.mycompany.myapp" />
</beans:beans>
У кого-нибудь есть идея решить эту проблему?
@AlfonsoDominguez @duffymo The сгенерированного проекта есть файл под названием "HomeController.java" следующего содержания: ' пакет com.mycompany.myapp; [...] ОБРАТНАЯ СВЯЗЬ [...] /** * Обрабатывает запросы на домашнюю страницу приложения. */ @Controller общественного класса HomeController { \t \t \t/** \t * Просто выбирает вид домашнего оказывать, возвращая его имя. \t */ \t @RequestMapping (значение = "/", метод = RequestMethod.GET) \t общественности Строка дома (локали, модель Model) { \t \t Строка ул = "сообщение сервера"; \t \t \t \t model.addAttribute ("serverTime", str); \t \t \t \t возвращение "home"; \t} \t } ' Это то, что вы говорите? –
yep, вот что я имел в виду, пытались ли вы получить доступ к URL-адресу 'http: // localhost: 8080/myproject/home'? Этот URL-адрес кажется правильным из ваших файлов конфигурации. –