Adres aplikacji

0

Cześć,
Przerabiam tutorial w springu 4, używam IntellijIdea i server Tomcat
Moja aplikacja odpowiada gdy uruchamiam adres http://localhost:8081/
natomiast adres http://localhost:8081/GreenLibrary/ zwraca mi 404 (gdzie nazwą projektu jest GreenLibrary)
Dlaczego ? Gdzie ustawić żeby aplikacja zaczynała się od swojego adresu czyli http://localhost:8081/GreenLibrary/
Wiem że można dodać adnotację do kontrolera ale chyba to nie jest właściwe rozwiązanie.

HomeController

package s10338.main;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HomeController {

    @RequestMapping("/")
    public String welcome(Model model) {
        model.addAttribute("greeting", "Witaj w sklepie internetowym!");
        model.addAttribute("tagline", "Wyjątkowym i jedynym sklepie internetowym");

        return "welcome";
    }
}

web.xml

<web-app version="3.0" 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_3_0.xsd">

    <servlet>
        <servlet-name>DispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>WEB-INF/dispatcher-servlet.xml</param-value>
        </init-param>
    </servlet>

    <servlet-mapping>
        <servlet-name>DispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

</web-app>

dispatcher-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:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
		http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">


    <mvc:annotation-driven />
    <context:component-scan base-package="s10338.main" />

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

</beans>
0

A tak próbowałes?

@Controller
@RequestMapping("/GreenLibrary")
public class HomeController {
 
    @RequestMapping("/")
    public String welcome(Model model) {
        model.addAttribute("greeting", "Witaj w sklepie internetowym!");
        model.addAttribute("tagline", "Wyjątkowym i jedynym sklepie internetowym");
 
        return "welcome";
    }
}
0

server.contextPath=/GreenLibrary

0
Szczery napisał(a):

server.contextPath=/GreenLibrary

Czyli to jest ustawienie Tomcat-a?
Nie korzystam z Spring Boota, więc nie mogę dodać sprytnie tego propertisa.
A czy jak mam projekt w Idei można to jakoś ustawić ? Bo to chyba jest w server.xml ? Tak ?

1 użytkowników online, w tym zalogowanych: 0, gości: 1