Difference between revisions of "Java"
Jump to navigation
Jump to search
(→Payara) |
|||
Line 47: | Line 47: | ||
./asadmin undeploy | ./asadmin undeploy | ||
</pre> | </pre> | ||
+ | |||
+ | An example of a path for a test resource: | ||
+ | <pre> | ||
+ | http://localhost:8080/GettingStarted/webresources/get | ||
+ | </pre> | ||
+ | ...assuming webresources are in the application config |
Latest revision as of 20:07, 27 November 2018
Contents
Basics
Version
java -XshowSettings:properties -version
JDK
From deb
sudo apt install ./Downloads/jdk-11.0.1_linux-x64_bin.deb
Through apt-get
sudo apt-get update sudo apt-get install default-jdk
Location
Likely location of the JDK:
/usr/lib/jvm
IDE
Bundled IDEs on Ubuntu:
sudo apt install ubuntu-make
Or, for IntelliJ:
sudo add-apt-repository ppa:mmk2410/intellij-idea-community sudo apt-get update sudo apt-get install intellij-idea-community
Payara
./asadmin deploy /home/maxim/Dropbox/netbeans/GettingStarted/dist/GettingStarted.war ./asadmin redeploy /home/maxim/Dropbox/netbeans/GettingStarted/dist/GettingStarted.war ./asadmin start-domain ./asadmin stop-domain ./asadmin list-applications ./asadmin undeploy
An example of a path for a test resource:
http://localhost:8080/GettingStarted/webresources/get
...assuming webresources are in the application config