Recently I deployed a web app in WebSphere Community Edition v3. Eclipse smartly created geronimo-web.xml and web.xml. In JSF 2.0 we learned about the use of web.xml but what is the use of geronimo-web.xml? Can I ignore this file and simply remove from the app?
What geronimo-web.xml does in WebSphere?
1.3k Views Asked by ravi At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in WEBSPHERE
- Websphere 8.5.5 - shared session context not working
- unable to deploy restful application liberty profile 8.2
- Using Cobertura for Junit testing webapp deployed on WebSphere Liberty Profile
- Combining custom application authentication with JAVA EE security. Possible?
- WAS 8.5 Admin console - Give only access to Deployment
- How do I change callerPrincipal from EJB timer?
- Eclipse Scout RAP UI deployment in Websphere
- com.ibm.wsspi.http.channel.exception.WriteBeyondContentLengthException
- Apache axis2/axiom NoSuchMethodError
- Install wasJmsClient-2.0 feature in Liberty Profile 8.5.5.2
- Not able to start MDB listner
- Why would a class be unable to be cast to an interface it implements?
- JProfiler not able to detect WebSphere JVM
- How to control nodes if DMGR is down in Websphere environment
- Websphere maven dependencies
Related Questions in GERONIMO
- Default encoding in Geronimo with Tomcat
- Can not run Apache Geronimo 3 on WinXP
- Geronimo.out increase too fast
- @EJB annotation vs JNDI lookup + transaction
- geronimo deploy cli file not found
- Fuse distributed tx manager doesn't release DB sessions
- OpenJpa in Apache Geronimo 3.0
- How to get eclipse to use jars installed on application server
- Geronimo double slash "//" in urls with application having context root "/"
- Geronimo deployment error: Invalid JAR file
- Geronimo-3.0.1 Aries Blueprint java.lang.VerifyError
- Geronimo FTP Server on Fedora 19
- Can any Java program be deployed to Geronimo
- how to access datasource in geronimo via jndi by remote client application
- Geronimo vs Glassfish
Related Questions in WEBSPHERE-CE
- WASCE data source encryption and integrity configuration
- How can I share variables among different load-balanced WebSphere instances?
- Does Apache CXF library work on a WAS CE server?
- java.lang.ClassNotFoundException: com.sun.faces.config.ConfigureListener when using MyFaces with WASCE/Geronimo
- how to create database pool in websphere to connect to db2
- Fresh WAS-CE installation gives nothing but "HTTP 400 'bad request'"?
- Work and Time Manager in WAS Community Edition
- WASCE to Tomcat migration - Axis fault issue
- Websphere CE (Community Edition) fails to load properties from file to InitialContext
- Websphere: No recipient has been provided on the MailMessage or the 'MailHeaders.TO' header
- Spring cannot find jar outside EAR - WebSphere community edition
- java.lang.String in jndi default context with Apache Geronimo - How?
- Log4j in Websphere
- Getting started for JSF in WebSphere Community Edition v3
- What geronimo-web.xml does in WebSphere?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It's a server-specific deployment configuration file which allows you to configure server-specific properties from inside the deployed web application, such as class loading, character encoding, JNDI resources, etcetera.
Other servers have also this kind of server-specific configuration files. Glassfish has
glassfish-web.xml, Tomcat hascontext.xml, etc. IBM Websphere CE uses Apache Geronimo as container.You can just remove it if you want, but why would you?
See also:
geronimo-web.xmldocumentationPlease note that the
web.xmlis not specific to JSF API, but to the Servlet API. JSF has thefaces-config.xml.