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
451 views Asked by Wiki At
1
There are 1 answers
Related Questions in WEB.XML
- In Web.xml Getting error <?xml version="1.0" encoding="UTF-8"?>
- In a web.xml, can the url-pattern of servlet-mapping containing more than one path component? (e.g. /path/to/*))
- Richfaces 3.x - Spring Boot - Migrate web.xml
- Jersey Web.xml Configuration
- Problem with deploying a spring 6 + spring-security 6 + jsf 3.0 application to the payara 6 server
- Add a new JAX-RS resource to web.xml servlet mapping
- Is there a way to define required parameter in web.xml in java servlet
- Deny access to specfic route in web.xml - Java
- Spring Security - avoiding in-web-container role binding removes flexibility
- HSTS header missing error even its show in application with preload (and http port also disable)
- Eclipse web.xml "Referenced file contains errors"
- Eclipse web.xml "The error was detected when validating the file jakartaee_10.xsd"
- Swagger and Spring MVC (non-spring-boot)
- IntelliJ all of Controllers could not autowired all of Services after context seperation
- JasperReport PDF displayed unrecognized binary after hardening Tomcat 7 web.xml
Related Questions in PLAYFRAMEWORK-1.X
- How do I use keystores and truststores with Play 1.x framework?
- how to add #{authenticityToken /} to all playframework forms
- Play framework 1.7 puts compiled templates in root dir
- Deploy Play Framework 1.5 with pm2
- Play Framework 1.x Functional Test with @AllowFeature Controller Method
- Setting a custom Hibernate session-scoped interceptor In Play 1.x does not work
- Play! Framework Functional Test ghost data
- Using the Play Framework for Java, how do I return a 500 response from a controller?
- Increase max header size in play framework 1.5.x
- How can I retrieve the body as JSON Play framework 1.5
- How to separate application.conf to multiply conf files in play framework 1.3
- Linking MySQL Connector Jar To My Dependencies Java Play Framework 1.x
- Play Framework not working after updating macOS to Catalina
- Java Play Framework 1.4x - Development Server
- How can I migrate play framework 1.2.4 to play 2.1?
Related Questions in JAVA-MELODY
- Unable to save java melody logs
- JavaMelody PDF Report: Customizing the generated PDF Report
- Error starting JBOSS 7.4 after upgrade javamelody version from 1.65.0 to 1.66.0
- JavaMelody error - java.lang.NoSuchMethodError: sun.nio.ch.DirectBuffer.cleaner()Lsun/misc/Cleaner
- JavaMelody: @net.bull.javamelody.Monitored annotation not showing Statistics for Classes or Methods
- Null pointer exception on invoking a service in a spring boot application when java-melody dependency is added
- Configuring JavaMelody on Apache Tomcat 10.x
- java.lang.IllegalStateException: Could not evaluate condition on net.bull.javamelody.JavaMelodyAutoConfiguration#
- Java Melody JPA Monitoring Implementation failed for HibernatePersitenceProvider
- what memory is displayed in the logged message
- "Could not release " message happens sometimes in JavaMelody
- Java Melody does not show any sql data on xampp tomcat8
- How I can list all added apps in javamelody monitoring using curl command?
- Spring fox reponse with 500 when Java melody is integrated
- JavaMelody JDBC Graph not working Tomcat 8.8 and mysql DB
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?
Popular Tags
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)
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.