Aiuto in Java

di il
3 risposte

Aiuto in Java

Buon pomeriggio,
ho un problema con Spring MVC Web.
Ho un problema.
Ho provato tantissimi procedimenti ma mi da sempre sbagliato.
SEVERE [87] org.apache.catalina.core.ApplicationContext.log Servlet.init() for servlet [dispatcher] threw exception
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'urlMapping' defined in ServletContext resource [/WEB-INF/dispatcher-servlet.xml]: Initialization of bean failed; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'indexController' available
Non so più cosa aggiungere o togliere o modificare.
Grazie.
Ciao

Inserisco dispatcher-servlet:
<?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"  
           xmlns:p="http://www.springframework.org/schema/p"  
           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.xsd  
            http://www.springframework.org/schema/mvc  
            http://www.springframework.org/schema/mvc/spring-mvc.xsd">  

    <mvc:annotation-driven />
 
<bean id="urlMapping" 
      class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
    <property name="mappings">
        <props>
            <prop key="/WEB-INF/jsp/index.htm">indexController</prop>
        </props>
    </property>
</bean> 

<bean id="viewResolver"
      class="org.springframework.web.servlet.view.InternalResourceViewResolver"
      p:prefix="/WEB-INF/jsp/"
      p:suffix=".jsp" />

<bean name="indexController"
      class="org.springframework.web.servlet.mvc.ParameterizableViewController"
      p:viewName="index" />
     
</beans>
Inserisco web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/jsp/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>2</load-on-startup>
    </servlet>
 <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>*.htm</url-pattern>
    </servlet-mapping> 
    <session-config>
        <session-timeout>30</session-timeout>
    </session-config>
    <welcome-file-list>
        <welcome-file>/WEB-INF/redirect.jsp</welcome-file>
    </welcome-file-list>
    
</web-app>

3 Risposte

  • Re: Aiuto in Java

    Non c'è nessuno che può aiutare?
  • Re: Aiuto in Java

    Beh, ci sarebbero diverse cose da sapere, valutare prima:
    - quale versione di Spring usi? 4.x o 5.x ?
    - come hai gestito tutte le dipendenze (i jar necessari): con Maven, Gradle ecc.. oppure "a mano"? (se a mano, è ben più critico/difficile e ... bisogna vedere)
    - perché hai bisogno di usare cose tipo SimpleUrlHandlerMapping e ParameterizableViewController?
    - perché per SimpleUrlHandlerMapping hai messo un path che inizia con /WEB-INF ? (un client, es. browser, NON può chiedere cose sotto /WEB-INF ... è da specifica delle Servlet)
  • Re: Aiuto in Java

    Ciao,
    Uso tomcat, non ho usato maven.
    SimpleUrlHandlerMapping e le altri erano già inseriti quando ho creato il progetto.
    Ciao
Devi accedere o registrarti per scrivere nel forum
3 risposte