• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Failed to map to jsp file.

 
Ranch Hand
Posts: 229
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi With Spring mvc 3.0.5 and jsp, my DispatcherSerlvet thrown the following exception:



Here is my xml config file:



Controller class:



In my xml config file, when I used "<url-pattern>/abc/*</url-pattern>" mapping, there is no problem until I changed it to "/*", then it failed to map to the correct jsp file.
How can I use /* mapping instead of /abc/*?

I want my website to be browsed as "www.mysite.com" rather than "www.mysite.com/abc/"

Any suggestion is very appreciated
Thanks
Sam
 
sam White
Ranch Hand
Posts: 229
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I changed it to <url-pattern>/</url-pattern>, then it works . But my login doesn't work with the following error:

HTTP Status 404 - /j_spring_security_check

type Status report

message /j_spring_security_check

description The requested resource (/j_spring_security_check) is not available.

JBoss Web/7.0.13.Final



This is my secuirty-config.xml file:



controller for handling login:



Looking forward to your suggestion.
Thanks
Sam
reply
    Bookmark Topic Watch Topic
  • New Topic