Tagged Questions
2
votes
1answer
945 views
spring BeanCreationException confusion about mapping
trying to integrate hibernate and spring ,I ran into this error
SEVERE: Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name
...
2
votes
1answer
492 views
Servlet/JSP URLs when forwarding requests
My web app has a servlet called admin which when navigated to checks if the user is logged in and if the are directs to the the admin section, but if they aren't it directs them to a JSP page with a ...
1
vote
1answer
324 views
url-mapping for all .html URLs, including URLs with query parameters
I'm trying to write a filter that will pick out any request for an HTML page, regardless of whether or not the URL has query parameters. (The aim of this filter is to track visitor actions/stats)
...
1
vote
3answers
1k views
Spring servlet mapping - no css or jsp!
I read over this post, which is similar to my issue, but had no luck solving the problem:
Basically I used to have the following servlet-mapping in my web.xml:
<servlet-mapping>
...
1
vote
2answers
2k views
Spring URL mapping question
I am using Java with Spring framework. Given the following url:
www.mydomain.com/contentitem/234
I need to map all requests that come to /contentitem/{numeric value} mapped to a given controller ...
0
votes
1answer
35 views
In JSF, can I suppress part of the directory hierarchy of an XHTML file in the URL?
In a JSF application, we have the directory hierarchy:
webapp
xhtml
login.xhtml
main.xhtml
search.xhtml
css
main.css
extra.css
js
jquery.js
etc. The servlet mapping ...
0
votes
0answers
62 views
How to create logic for all unmapped request URLs in Spring?
I am using Spring 3.0.5. I have some controllers and some request mappings. Lets say on the following urls:
"/x"
"/y/z"
I need to do some logic on all other request mappings ("/**" excluding "/x", ...
0
votes
0answers
48 views
servlet mapping, legacy method
I've read about mapping via web.xml, done with the servlet element but without the servlet-mapping element (JSP The complete reference, by Hanna Phil).
<servlet>
...
0
votes
2answers
158 views
Accessing a servlet's mapping from Tomcat?
The following code accesses a servlet's name: servletConfig.getServletName().
Can I access a servlet's URL pattern in a similar way?
An excerpt from web.xml:
<servlet-mapping>
...