How can I generate Exploded War of my Play Framework app ?, because I would like to customize my web.xml file before running the play war command ... I am trying to install JavaMelody for my app I have searched to install but it is answered that we have to change the web.xml in the war file, I dono how it is possible to make edit a war file, yes we can extract it and edit but how to generate again a war file with those extracted files, So I searched about Custom web.xml in play framework documentation Custom web.xml and I don't know how to take an exploded war.
To generate an Exploded war for play framework inorder to create custom web.xml file
446 Views Asked by Wiki At
1
There are 1 best solutions below
Related Questions in WEB.XML
- Dispatcherservlet force loading spring context
- Facelets error page works during ajax request with FullAjaxExceptionHandler, but does not evaluate EL during synchronous request
- Fail to locate j_spring_security_check in Spring Security
- Exclude one role in web.xml
- Handle two URL pattern form one controller in Spring MVC
- Java EE using Datasource without lookup method
- How to configure Servlet on Tomcat Server and fix javax.naming.NameNotFoundException?
- HTTP Status 500 - java.lang.LinkageError - Servlets
- Enabling/disabling a web.xml filter using a Spring profile
- Invalid url-pattern in web.xml
- How to load config.properties file in a Seam Application using web.xml context-param
- Java web.xml <servlet-class> tag and web.xml Specification/Documentation
- How to trigger a doGet before displaying a jsp page
- Shorten website url in a web.xml file. Using Jetty
- filter mapping to last path segment
Related Questions in PLAYFRAMEWORK-1.X
- How to configure the connection pool in Play Framework 1.3 through application.conf and c3p0.properties?
- How to know an object has changed compared to database
- how to retrieve data from java listing using js
- Play-Morphia with Play 1.4
- Action method never invoked
- Play! framework 1.2.5: How to test if response is secure?
- Play framework 'set' template tag not working between files
- How to expose the internal error message id in play framework 1.2.7 via json?
- Play! Framework - Multiple MongoDB for same application
- Play 1.2.x UnexpectedException ContinuationEnhancer on helpers.CheatSheetHelper$2 invalid constant type: 15
- Running an instance in DEV mode, without displaying exception stacks
- Make the Play 1.x router work when the application's root is other than /
- Play! framework uses a <lot> of statics
- Play Framework 1.2.5 Hibernate upgrade to v 4.2.4
- Linking and querying MySql with Play-1.2.5
Related Questions in JAVA-MELODY
- Restrict access to java-melody monitoring url
- Default Interceptors in CDI Beans
- How to make Javamelody use different port (Spring Boot+two HTTP ports exposed)
- Increasing Heap Space of Grails Application Deployed on Tomcat Server in Windows OS
- wildfly 10 javamelody jpa monitoring
- How to add common filter for all tomcat instances without editing the individual instances web.xml file
- How to use javamelody without modifying the webapp
- Is it possible to add custom matrix in javamelody?
- To generate an Exploded war for play framework inorder to create custom web.xml file
- Is there any hack to disable Ignite / Hazelcast from launching when javamelody is enabled?
- "Could not release " message happens sometimes in JavaMelody
- JavaMelody change version from "javamelody-spring-boot-starter" to "javamelody-core"
- how to reload context of the application using JavaMelody?
- Java Melody - Error resolving template "error" when hit the hit URL
- Java Melody does not show any sql data on xampp tomcat8
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?
If you have your web.xml file sitting in as specified in the Play! help link you have provided:
And you run on your project:
This will produce an exploded war at the location some_directory.
As for customising the web.xml file, you can include the file as part of your repository if you do not need to change the contents of the file at build time. If you do need to dynamically change the web.xml contents at build time, I would suggest adding a step in your build script.