1
vote
accessing constants in JSP (without scriptlet)
It's not working in your example because the ATTR_CURRENT_USER constant is not visible to the JSTL tags, which expect properties to be exposed by getter functions. I haven't tried it, …
5
votes
How to make Jetty dynamically load “static” pages.
Jetty uses memory-mapped files to buffer static content, which causes the file-locking in Windows. Try setting useFileMappedBuffer for DefaultServlet to false.
…
0
votes
How should I configure Jetty 7 pre3 to use oracle JDBC source?
The problem is that addLifeCycle does not take a Resource object; it takes LifeCycle implementations such as WebAppContexts or WebAppDeployers. …
2
votes
declare JSP taglib directives in web.xml
The taglib element in web.xml serves a different purpose to the taglib directive which you have above.
As David said, the taglib directive is required …
0
votes
Importing the content of another web resource using JSTL
If it works from the same server, different app, makes it possible that there's a variable that's not being initialized somewhere, or some state which makes it throw an exception. Check the error l …
