After deploy I am changing .class file in applications directory and I am restarting to server. But Payara loading old .class file (I think from war file). This is happening on some servers. Is there any parameter for disable this?
Payara loading old class After change class file and Restart
372 Views Asked by utrucceh At
1
There are 1 best solutions below
Related Questions in DEPLOYMENT
- Can I deploy multiple instances of my application on the same windows phone?
- Deploy enterprise (in-house) application on windows phone without developer unlocking the phone?
- uninitialized constant ActiveMerchant::Billing::CreditCard::Validateable (NameError) - in Spree shop
- How to Continuously Develop and Deploy an Access 2010 Database Application
- Efficient way of organizaing mail sending from Rails app
- Deployment over GPRS to embedded devices
- Weblogic 12c web application not start properly after server reboot
- Deployment in Weblogic 10.3, how to change properties
- Deployed Version of MVC Site Not Working
- Laravel 5 on shared hosting getting internal server error
- Integration between Java Applets and .Net dll
- Capistrano Rails deploy with new migration files
- EF Code First - Multiple Application Versions Sharing A Database
- Docker: How to create a stack, multiple images or one base image?
- Slow wpf startup due to publish policy... maybe
Related Questions in PAYARA
- Uncompilable source code
- Glassfish 4.1.1 / EAR / java.lang.IllegalStateException: Unable to retrieve EntityManagerFactory for unitName XYZ
- When scanning too many entity in jpa hibernate, glassfish startup very slow or memorry leak
- WELD-001408 when trying to deploy rest project as war type that references a jar project with jpa content
- asadmin list-instances cluster glassfish
- A resource named jms/ressource.factory already exists
- including vaadin-cdi dependency in pom.xml is enough to make WAR undeployable. Why?
- payara 4.1.1.171 :: ecliselink jpa issue with case when condition
- Payara Server and NetBeans 8.2: Request is within the scope of a filter or servlet that does not support asynchronous operations
- Use apache as frontend to Glassfish
- JSF warning is logged before custom exception handler is called (Glassfish/Payara)
- spring boot application jndi on glassfish/payara container
- Payara Server 5 Community version #badassfish message on webpage fail
- Show Maintenance "Custom Message" to end User if server stops/down in payara
- Payara Server doesn't start, The Master Password is required to start the server
Related Questions in PAYARA-MICRO
- "org.apache.jasper.JasperException: PWC6345" error when using Payara-Micro to deploy a JavaEE application
- How can I remove the Server header in Payara Micro 172?
- @startup and @postConstruct not called at payara startup
- What is the format of the file serving as the operand to the --systemProperties command line argument?
- Inconsistent behavior with creating persistence units using Apache NetBeans 12, Jakarta/Java EE, with EclipseLink and Payara?
- Payara 5.2020.4 didn't start
- Payara loading old class After change class file and Restart
- Memory usage of Micro Docker containers
- Unable to start Payara (payara6) server instance in vscode
- Payara xml based authentication
- Deploying war to payara throws severe errors: Unable to obtain CDI 1.1 utilities for Mojarra
- JakartaEE web app and Nginx: redirecting from app subfolder to domain
- How to add a timer service in Eclipse MicroProfile
- Payara Micro with enhanced classloading?
- Derby JDBC Driver not found when a War is deployed on Payara Micro
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?
You shouldn't change anything in the applications directory. This is an internal directory for caching applicaiton files and isn't guaranteed that your change will be reflected.
If you want to change
.classfiles without completely redeploying an application, you should deploy your application as an exploded archive (not a WAR but an unpacked WAR file as a directory) via the autodeployment mechanism. You need to unpack your WAR file into theautodeploydirectory in the domain directory.If you're deploying to a remote server, you first need to copy the WAR file to the server and unpack it there.
See https://eclipse-ee4j.github.io/glassfish/docs/5.1.0/application-deployment-guide/deploying-applications.html#GSDPG00041 (or Application Deployment Guide in PDF here: https://eclipse-ee4j.github.io/glassfish/docs/)