Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
5k views

What does WEB-INF stand for in a Java web application?

Most of the places on the internet say it stands for WEB INFormation. I rather doubt it. The folder contains executables. Information is not a suitable name for it.
5
votes
2answers
5k views

Is WEB-INF in the CLASSPATH?

Is the WEB-INF folder in the CLASSPATH of a Java Web application?
3
votes
3answers
1k views

Maven dependecies not visible in WEB-INF/lib

I having this weird problem converting my project to maven-based. I created a new Maven project in eclipse and enabled the Dynamic web facets. But during runtime now it throws ClassNotFoundExceptions ...
3
votes
2answers
771 views

Error moving JSP file into WEB-INF directory with Stripes

I have the following Stripes ActionBean: package myapp; import net.sourceforge.stripes.action.*; public class WelcomeActionBean extends MyAppActionBean { @DefaultHandler public Resolution ...
3
votes
3answers
2k views

JSF faces config file outside WEB-INF?

When creating multiple faces config files, it is correct to have the faces-config.xml outside of WEB-INF? The JSF spec does not seem to be very clear about this (Section 10.1.3) If yes, how should ...
3
votes
1answer
1k views

How can I get at files in my WEB-INF folder?

I'm running Java web app using tomcat and I want to read a properties file that's located in my WEB-INF folder. How can I get an InputSteam to this properties file so I can read it?
2
votes
2answers
147 views

Tomcat 6 not loading jars from WEB-INF/lib

I'm trying to track down a configuration issue in my tomcat environment. Our production servers are running a tomcat installation and reading the war from a shared NFS mount. However, when I try the ...
2
votes
3answers
326 views

How do I make Weblogic 10 prefer the jars in myApp.war:/WEB-INF/lib/ without throwing VerifyErrors?

The Weblogic classloader seems to prefer system libraries over the libraries in my war's WEB-INF/lib/. I've tried setting the following in WEB-INF/weblogic.xml, without success: ...
2
votes
2answers
2k views

JSF files inside WEB-INF directory / Model 2 Pattern

I want to put my JSF 2.0 xhtml files under WEB-INF\jsf. How do I access them then? I know that anything inside WEB-INF isn't exposed to the outside, so I need a controller to redirect me to the ...
2
votes
2answers
1k views

web-inf and jsp page directives

i have a number of jsp files under web-inf folder. Inside my web.xml i specify an errorppage for 404 amd 403 and java.lang.exception. Do i need to include a page directive for each of my jsp's or will ...
1
vote
1answer
45 views

How to put jsp in WEB-INF correct?

I'm using MVC and want to put my jsp pages in WEB-INF to avoid direct access to it. I have an index.jsp page and other pages in jps folder in Web Content and it works. It looks like this: -Web ...
1
vote
1answer
31 views

Can we change the name of WEB-INF

may i know if i can change the name of WEB-INF folder in any tomcat webapp. If no, then why as there is context.xml file in tomcat conf folder which contain the path of watchedresource. I tried ...
1
vote
1answer
281 views

Tomcat6 ignores web-inf/lib

Brief: Tomcat6 can't recognize my ojdbc14.jar in WebRoot/WEB-INF/lib. I suppose I don't need to configure anything, just putting the .jar file in there and it should work. Details: I've created a ...
1
vote
2answers
516 views

Spring/Resin configuration problem

I am wiring up a servlet thru spring running inside resin.. When the web app starts up i get [11-02-22 12:12:36.259] {main} org.springframework.beans.factory.BeanDefinitionStoreException: Could ...
1
vote
1answer
210 views

How to load StringTemplateGroups from the WEB-INF directory of a web archive

this question is somewhat related to this question: StackOverflow: Howto load a resource from WEB-INF directory of a web archive I want to use StringTemplate and want to load my templates via a ...
1
vote
2answers
1k views

How to acces a file under WEB-INF from a Java web application

Do you have any idea how to access files in WEB-INF/index folder from my application? I'm using OpenCMS for my application and I want to open a Lucene search index (with the help of Lucene IndexReader ...
0
votes
1answer
25 views

How get WEB-INF folder path in java JAX-WS app

I have a java webservice application with java bean's. How i can determine full path to file in WEB-INF directory.
0
votes
0answers
65 views

Access JSF files lies inside WEB-INF directory folder? [closed]

Possible Duplicate: JSF files inside WEB-INF directory / Model 2 Pattern Start JSF project i want to to make a jsps folder inside the WEB-INF folder where i would place all my JSF files.On ...
0
votes
1answer
28 views

In Eclipse, how can i display WEB-INF as a flat view?

I'm tired of drilling down into my jsp folder over and over, is there any way to make WEB-INF a flat package view in eclipse? I tried to change it in the view settings but it didn't seem to matter. I ...
0
votes
1answer
49 views

merging 2 wicket web projects into 1 multi-module maven project

I have created 2 separate wicket web projects. Now i want put them together in multi-module maven project and put the dependency as required. Will it give problem when i have have web-inf folders. ...
0
votes
1answer
49 views

How do I share security-constraint between .wars?

I have a JEE app server (jboss-eap-4.3) and several .wars that make up a larger web application. The idea is that a .war can be run separately or linked from another .war. As they are all part of ...
0
votes
1answer
61 views

where .jsp files put in web project

I have an issue where to put view (.jsp) file in the web applications.little bit confuse it may be inside the WEB-INF folder or out side the WEB-INF folder. Lot of spring projects view(.jsp) files ...
0
votes
0answers
57 views

How to add an additional path to the classpath of a web application

I know how to add a JAR or class folder to a dynamic web project in eclipse. Doing this will copy the JAR to WEB-INF/lib or class folder to WEB-INF/classes when deployed. This is not what I am ...
0
votes
1answer
44 views

How do I specify relative file paths in restful web applications

Deployment of my restful application will be "exploded" from a single WAR file. All file paths will need to be relative and not absolute (Nesting from a single WEB-INF directory). What is the ...
0
votes
0answers
25 views

Tell Eclipse to put jars into WEB-INF/lib automatically?

Is it possible to tell Eclipse (Helios) to put used jars into WEB-INF/lib directory of target server? I can put them manually into project's WEB-INF/lib folder, and I can add this folder to ...
0
votes
1answer
213 views

Access resource file from JSP

I want to access xml files from java class, lying under web/resources folder.. i.e ---Web pages | |--Web-INF | |-resources | |-data.xml | |-other jsps ---Source Folder |-databean I want to access ...
0
votes
1answer
218 views

App Engine doesn't find WEB-INF in WAR created by sbt

I'm trying to make a Lift app that I can run on App Engine and am managing the project with sbt. I have web.xml and appengine-web.xml in src/main/webapp/WEB-INF and package the project with sbt ...
0
votes
4answers
202 views

Classes not seeing each other in JSP

In a tomcat JSP application I have this directory layout: webapps/ myProjectName/ index.jsp WEB-INF/ classes/ mypackage/ ...
0
votes
1answer
1k views

Set path in web.xml relative to WEB-INF

I want to set a path in my web.xml which is relative to the WEB-INF or the WEB-INF/classes. However, the following code (repository.home) seems to pick up a path relative to c: root drive path on my ...
0
votes
1answer
136 views

tomcat not compiling WEB-INF/libs?

[irrev] I keep making guesses and asking accordingly as to what's wrong here, so take that under consideration. The project I'm working on is setting up a web application, the source of which was ...
0
votes
1answer
2k views

Java WebApp: Loading resource from .jar located in WEB-INF

There are a lot of similar questions, but, probably, mine is a little bit different: What is the right way to load resource from inside of .jar file located in WEB-INF/lib folder (if I know the jar ...
0
votes
1answer
747 views

WEB-INF/lib jars not found in JBoss 4.0.2 war deploy

I have a simple web application (one jsp and one servlet) file that I've copied into jboss-4.0.2/server/default/deploy folder and it has successfully hot deployed as I can access the jsp page. ...
0
votes
2answers
119 views

what jar's should Web Component WEB-INF LIB should contain in a war file

is web-inf/lib should contain only application specific jar's or deployment environment specific jar's also as per J2EE standards. Note : war file is not making use of any deployment environment ...
0
votes
2answers
208 views

Web Services in Unix. What should be the directory structure

I earlier got to create a simple RESTful webservice on my localhost using Eclipse IDE, Tomcat, and JAX-RS libraries. I am now trying to move the same on to a different unix server which has Tomcat ...
0
votes
4answers
3k views

Problem with moving JSPs under WEB-INF directory

I am facing a problem when I move my JSP files along with CSS and JS files under WEB-INF/web/ directory. The problem is that, when a JSP page loads, it does not load CSS and JS files. Please help if ...