Results 1 to 2 of 2

Thread: bug in spring 2.0 rc1 ?

  1. #1
    Join Date
    Apr 2006
    Posts
    3

    Default bug in spring 2.0 rc1 ?

    HI there,
    we have been using spring 1.2.4 for about six months with no problems. Upgraded to 2.0 rc1 and my handlerMapping bean definition (SimpleUrlHandlerMapping) in spring-servlet.xml was no longer being recognized.

    I went back to the current prod release (1.2.8) and problem disappeared.

    Thanks Tom.


    Code:
    <bean id="handlerMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
         	<property name="mappings">
            	<props>
    				<prop key="quote.html">quoteController</prop>
    				<prop key="flowQuote.html">houseHolderFlow</prop>
    				<prop key="secureQuote.html">quoteController</prop>
    				<prop key="admin.html">adminController</prop>
    				<prop key="clientSearch.html">clientSearchController</prop>
    				<prop key="existingClient.html">existingClientController</prop>
    				<prop key="client.html">clientController</prop>
    				<prop key="quoteSearch.html">quoteSearchController</prop>
    				<prop key="main.html">homePageController</prop>
    				<prop key="printOptions.html">printOptionsController</prop>
    				<prop key="printQuote.html">printController</prop>
    				<prop key="printId_*.html">displayPdfController</prop>
    				<prop key="attachClient.html">attachClientController</prop>
                </props>
            </property>
        </bean>

  2. #2
    Join Date
    Jan 2005
    Location
    Bucharest, Romania
    Posts
    5,403

    Default

    Sounds like a compatibility problem - can you please raise an issue on JIRA and add a configuration example that illustrates the problem? Thanks.
    Costin Leau
    SpringSource - http://www.SpringSource.com- Spring Training, Consulting, and Support - "From the Source"
    http://twitter.com/costinl
    Please use [ c o d e ] [ / c o d e ] tags

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •