The deployment-descriptor tag has no wiki summary.
4
votes
2answers
2k views
DD elements, <context-param> and <init-param> both use the getInitParameter() method
DD elements <context-param> and <init-param> both can be retrieved by the getInitParameter() method, in the servlet code.
Now the question is, how does it differentiate ...
2
votes
1answer
290 views
How to exclude/redirect certain url pattern in web.xml or Guice servlet module?
I need to serve my main application with the url pattern "/*" so this pattern is matched to a Servlet.
The problem I am having is now all the css files and images located at "/css/all.css", "/images/" ...
1
vote
1answer
202 views
ejb reference in deployment descriptor (without annotations )
I try to inject dependency in EJB 3.0 using only deployment descriptor. When I deploy my app to Glassfish (v3.1) I get this exception:
java.lang.RuntimeException: Warning : Unable to determine local ...
1
vote
3answers
2k views
No web.xml in Eclipse + Glassfish v3?
I created a simple "hello world" servlet in Eclipse (helios) + Glassfish v3. I am using Glassfish's plugin for eclipse It seems there is no web.xml but a sun-web.xml in the WEB-INF/ folder. This is my ...
1
vote
0answers
328 views
How do I use wild cards (*) in url-pattern with MVC correctly
I am trying to get a servlet to respond to every request with a url-pattern of "/test/*". so this controller should respond to :
myApp/test/
myApp/test/whatever
myApp/somehting?other=stuff
using ...
1
vote
2answers
3k views
How to initialize a value in web.xml from a JNDI variable?
In my Java web application, the NTLM domain controller name is specified in web.xml like this:
<filter>
<!-- other code -->
<init-param>
...
0
votes
1answer
31 views
Java EE Security: annotations vs deployment descriptor
I have a question regarding Java EE security best practices.
What are the advantages and disadvantages of using either annotations or a deployment descriptor to define Security for a web application?
...
0
votes
1answer
76 views
Deploying a tomcat application with distinct environment entries and resource references
I have developed a web application that runs on an Apache Tomcat 7.0.14 server locally (my development environment). I am ready to push my application to a production host, but I am having issues ...
0
votes
2answers
51 views
How to indicate one or more match in url pattern?
"/*" will match zero or more characters. I want to serve request if there is a one or more characters
proceeding the "/" character.
Note: I am using Guice's Servlet Module to configure the request.
...
0
votes
0answers
23 views
concise JMS definition in Geronimo DD plans
I got 6 EAR applications running on Geronimo with ActiveMQ and
each EAR has more than one queue, e.g. 5. (different queue is associated to different MDB class)
application
a1, a2, ... a6
...
0
votes
0answers
293 views
Problems overriding web.xml in jetty
I have recently created an executable war (with Jetty embedded inside) following this blog: http://eclipsesource.com/blogs/2009/10/02/executable-wars-with-jetty/
What I'm trying to do is to specify ...
0
votes
1answer
87 views
Inject a String into a Message Driven Bean
I want to configure the behaviour of one of my mdbs with string. i created a setMessageType method and want to inject the identifier string into the mdb by configuration in the ejb-jar (deployment ...
0
votes
1answer
194 views
Overwrite annotated Destination of MDB in a deployment descriptor
I developed a Message Driven bean that will now be used for multiple destinations.
I want to define the Target Destination not by annotation (which would force me to change the code for each new ...
0
votes
1answer
75 views
issue with deployment descriptor
I am trying to load an application to my local tomcat instance. When I input the address into the URL bar after starting tomcat I'm getting 404-not found error even though the resources were there. I ...
0
votes
1answer
1k views
How can I catch all errors to same page from web.xml?
I tried to use
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/errors/error.jsp</location>
</error-page>
but i dosen't ...
0
votes
1answer
274 views
Can I have multiple EJB declarations for the same Home and Remote classes?
Can one declare multiple beans in the ejb-jar.xml (in EJB 1.1) deployment descriptor with different names but the same classes behind?
For example:
<session>
...
0
votes
1answer
1k views
Glassfish: Deploying application in domain failed; Error loading deployment descriptors - invalid bit length repeat
I'm trying to deploy a .war trough the server's web interface. Getting the same error when deploying it as an exploded directory with IDEA.
What is the solution to this problem?