entre Desarrolladores

Recibe ayuda de expertos

Registrate y pregunta

Es gratis y fácil

Recibe respuestas

Respuestas, votos y comentarios

Vota y selecciona respuestas

Recibe puntos, vota y da la solución

Pregunta

1voto

Error cuando utilizo <mvc:annotation-driven /> en proyecto spring mvc 3.3

Tengo una aplicación web en spring mvc 3.3 con hibernate y maven el root-context.xml es:

<?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:mvc="http://www.springframework.org/schema/mvc"
    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 http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">  
    <context:annotation-config />  
    <context:component-scan base-package="com.baseapp.web" />      
    <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />        
    <mvc:resources mapping="/resources/**" location="/resources/" />
    <mvc:annotation-driven />
    <bean class="org.springframework.web.servlet.view.UrlBasedViewResolver">
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
        <property name="prefix" value="WEB-INF/views/" />
        <property name="suffix" value=".jsp" />
    </bean>   
    <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
        <property name="basename" value="classpath:messages" />
        <property name="defaultEncoding" value="UTF-8" />
    </bean>    
    <bean id="localeChangeInterceptor" class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
        <property name="paramName" value="lang" />
    </bean>     
    <bean id="localeResolver" class="org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver">
    </bean>         
    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
        <property name="maxUploadSize" value="100000"/>
    </bean>     
    <bean id="handlerMapping" class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
        <property name="interceptors">
            <list>
                <ref bean="localeChangeInterceptor" />
            </list>
        </property>
     </bean>          
    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" p:location="/WEB-INF/jdbc.properties">  
    </bean>           
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" p:driverClassName="${jdbc.driverClassName}" p:url="${jdbc.url}" p:username="${jdbc.username}"
        p:password="${jdbc.password}" p:maxActive="${jdbc.maxActive}" p:maxIdle="${jdbc.maxIdle}" p:maxWait="${jdbc.maxWait}" p:logAbandoned="${jdbc.logAbandoned}" 
        p:removeAbandoned="${jdbc.removeAbandoned}" p:removeAbandonedTimeout="${jdbc.removeAbandonedTimeout}">  
    </bean>       
    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean" p:configLocation="/WEB-INF/hibernate.cfg.xml" >  
        <property name="dataSource" ref="dataSource" />
        <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.minPoolSize">${jdbc.maxIdle}</prop>
                <prop key="hibernate.maxPoolSize">${jdbc.maxActive}</prop>
                <prop key="hibernate.timeout">${jdbc.removeAbandonedTimeout}</prop>
            </props>
        </property>
        <property name="mappingResources">
             <list>
                  <value>/com/responsea/web/model/hbm/A.hbm.xml</value>
              <value>/com/responsea/web/model/hbm/B.hbm.xml</value>  
             </list>
        </property>
    </bean>         
    <tx:annotation-driven transaction-manager="transactionManager" />       
    <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager" p:sessionFactory-ref="sessionFactory">  
    </bean>        
 </beans>

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">
    <context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>/WEB-INF/spring/root-context.xml</param-value>
    </context-param>
    <listener>
      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <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/root-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>   
    <welcome-file-list>
      <welcome-file>portada.jsp</welcome-file>
    </welcome-file-list>
</web-app>

jsp:

                            <form:label path="provincia.idProvincia"><spring:message code="centro.provincia"/></form:label>
                            <form:select path="provincia.idProvincia" id="provincia" tabindex="7">
                                 <form:option value="" ><spring:message code='registro.eligeopcion'/></form:option>
                                 <form:options path="provincia.idProvincia" items="${lstProvincia}" itemValue="idProvincia" itemLabel="nombre"></form:options>
                            </form:select>
                            <form:errors path="provincia.idProvincia" cssClass="campoConError"/>

error:

> 2013-08-16 15:45:15,616 DEBUG http-apr-8080-exec-9
> org.springframework.web.servlet.DispatcherServlet.processRequest:
> Could not complete request org.apache.jasper.JasperException:
> org.springframework.core.convert.ConversionFailedException: Failed to
> convert from type java.lang.String to type int for value 'null';
> nested exception is java.lang.IllegalArgumentException: A null value
> cannot be assigned to a primitive type    at
> org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:549)

Sin

<mvc:annotation-driven />

funciona la jsp pero no me realiza las redirecciones de páginas.
¿A alguien se le ocurre cual puede ser el error?

1 Respuesta

2votos

dragoncete Puntos540

Parece que se queje de que un paràmetro que espera tiene que ser un numérico y está recibiendo un nulo...

Yo repasaría los paràmetros de entrada a alguna función que llama Spring automàticamente, por eso no da error al quitar las anotaciones (dejan de funcionar esas funciones con lo que no llega nunca a producirse).

0voto

marta_vina comentado

Muchas gracias Daniel, probaré a ver si puede ser eso, aunque he depurado y revisado que cada uno de los parámetros de la lista esté relleno por si había algo que no se rellenaba correctamente, volveré a probar a ver si puede ser eso:D
Muchas gracias.

0voto

marta_vina comentado

Ya lo he solucionado, muchas gracias, al final en la jsp faltaba poner:

                            <form:label path="provincia.idProvincia"><spring:message code="registro.provincia"/></form:label>
                            <form:select path="provincia.idProvincia" id="provincias" tabindex="6">
                                 <form:option value="" ><spring:message code='registro.eligeopcion'/></form:option>
                                 <form:options path="provincia.idProvincia" items="${lstProvincia}" itemValue="idProvincia" itemLabel="nombre"></form:options>
                            </form:select>

                            <form:label path="provincia.idProvincia"><spring:message code="registro.provincia"/></form:label>
                            <form:select path="provincia.idProvincia" id="provincias" tabindex="6">
                                 <form:option value="0" ><spring:message code='registro.eligeopcion'/></form:option>
                                 <form:options path="provincia.idProvincia" items="${lstProvincia}" itemValue="idProvincia" itemLabel="nombre"></form:options>
                            </form:select>

Faltaba un 0 en el <form:option>
Muchas gracias:D

Por favor, accede o regístrate para responder a esta pregunta.

Otras Preguntas y Respuestas


...

Bienvenido a entre Desarrolladores, donde puedes realizar preguntas y recibir respuestas de otros miembros de la comunidad.

Conecta