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
375 views Asked by utrucceh At
1
There are 1 answers
Related Questions in DEPLOYMENT
- Github Pages Deployment deploys a blank page
- Django Admin Panel and Sub URLs Returning 404 Error on Deployment
- Next 14 App Router pages from dynamic routes not generating when deployed on vercel but only work on localhost
- Deployment through app engine, cloud sql database, problem connecting with server code, doesn't connect
- How to Deploy and Manage a Python Application with Systemd
- Elasticbeanstalk FastAPI application is intermittently not responding to https requests
- Duplicate GET requests - Rails & Heroku
- How to use a proxy to obtain a static IP for my Node.js application?
- Next js app throwing 404 error when deployed to vercel, even though it works fine on local
- How to deploy my shiny application (with multiple files) via Docker
- Deploying telegram bot
- How to deploy angular 17 SSR into IIS
- Route not working on refreshing the page in react deployed application
- Vercel wildcard route's src results in 404 error in Hapi.js backend
- Django deployment with GTK3
Related Questions in PAYARA
- Is there any possibility to use JTA with Spring Framework 6 and Tomcat or Payara?
- Not able to change the logging level log4j on Payara server
- Setting the Maximum Message Size for JMS Destinations in Payara
- Openshift TLS edge termination not working with Payara server
- Javax (Payara) @Asynchronous and transactional
- WSSTUBE0025: Error in Verifying Security in the Inbound Message (Security Requirements not met - No Security header in message)
- Using logback in Payara 6 produces ClassNotFoundException
- Payara database connection error when pinging
- Glassfish/Payara SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder"
- Security issue in Spring Boot 3 with Payara 6
- Exceptions when using RichFaces or PrimeFaces in Payara 6 with Java 11
- How to create passwordalias for payara inside docker
- How to Setup Netbeans Profiler for Payara server deployed in remote windows host?
- Is there any way to deploy an application to a single virtual server in payara instead of all of them?
- Unable to start Payara (payara6) server instance in vscode
Related Questions in PAYARA-MICRO
- Not able to change the logging level log4j on Payara server
- Payara Micro Debug via NetBeans
- Docker Image Build Fails with "Permission denied" Errors on macOS [Payara/micro:5.2021.9]
- Unable to start Payara (payara6) server instance in vscode
- Memory usage of Micro Docker containers
- The warning happens when starting Payara 6 Micro: An illegal reflective access operation has occurred
- How to remove extra rest apis exposed by eclipselink version greter than 3.x?
- Java EE: Payara micro server not generating REST endpoints (404 error)
- PrismaCloud CVE-2022-36437
- Enabling payara-micro SSL through docker-compose
- Adding ActiveMQ-rar to a payara micro 6.2022.2 docker image.causes error javax/resource/spi/ActivationSpec
- Using Vaadin Flow with other servlets in Jakarta EE environment
- Payara @Asynchronous not asynchronous
- Upgrading to JakartaEE 10 - can't compile because "cannot access javax.faces.event.FacesEvent"
- Is there a way to use environment variable in payara-resources.xml when creating connector-connection-pool
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?
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)
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/)