Difference between revisions of "Java"
Jump to navigation
Jump to search
(Created page with "=Java= ==Version== <pre> java -XshowSettings:properties -version </pre> ==IDE== Bundled IDEs on Ubuntu: <pre> sudo apt install ubuntu-make </pre> Or, for IntelliJ: <pre> sud...") |
(→Payara) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | = | + | =Basics= |
==Version== | ==Version== | ||
<pre> | <pre> | ||
java -XshowSettings:properties -version | java -XshowSettings:properties -version | ||
</pre> | </pre> | ||
+ | ==JDK== | ||
+ | ===From deb=== | ||
+ | <pre> | ||
+ | sudo apt install ./Downloads/jdk-11.0.1_linux-x64_bin.deb | ||
+ | </pre> | ||
+ | |||
+ | ===Through apt-get=== | ||
+ | <pre> | ||
+ | sudo apt-get update | ||
+ | sudo apt-get install default-jdk | ||
+ | </pre> | ||
+ | |||
+ | ===Location=== | ||
+ | Likely location of the JDK: | ||
+ | <pre> | ||
+ | /usr/lib/jvm | ||
+ | </pre> | ||
+ | |||
− | + | ||
+ | =IDE= | ||
Bundled IDEs on Ubuntu: | Bundled IDEs on Ubuntu: | ||
<pre> | <pre> | ||
Line 18: | Line 37: | ||
</pre> | </pre> | ||
− | == | + | =Payara= |
− | |||
− | |||
− | |||
− | |||
− | |||
<pre> | <pre> | ||
− | + | ./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 | ||
</pre> | </pre> | ||
− | + | An example of a path for a test resource: | |
− | |||
<pre> | <pre> | ||
− | / | + | http://localhost:8080/GettingStarted/webresources/get |
</pre> | </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