Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java development in Ubuntu

Tags:

java

linux

ubuntu

I'm a newbie to Linux systems and recently I started using Ubuntu 10.04. When I do java development in Windows, I usually keep my project files under some drive (D: for example) and under my development folder, such as D:\projects\myproj. But I'm bit confused with Ubuntu's folder structure. So, I just want to know how do you organize your projects in Ubuntu? Under which folder do we keep our projects file?

like image 951
Veera Avatar asked Jun 12 '10 18:06

Veera


People also ask

Can we do Java in Ubuntu?

The Java Runtime Environment (JRE) is required to run Java programs. Nowadays there are many JRE packages available from a variety of projects and companies, but the two most popular on Ubuntu are OpenJDK and Oracle HotSpot.

Where is JDK in Ubuntu?

For Ubuntu, the JDK extension directories are " <JAVA_HOME>/jre/lib/ext " (e.g., " /usr/user/java/jdk1. 8.0_xx/jre/lib/ext ") and " /usr/java/packages/lib/ext ".


1 Answers

You can do anything you want, but typically if you develop in a directory that is not under your home directory, you'll probably need administrator (root) permissions to set up the directories. Another reason to use a sub-directory under your home directory is that in larger companies, the home directories are often stored on a separate file server, which is backed up on a regular basis.

I usually create a directory workspace in my home directory, and then create project directories under that. Other developers may use src or projects.

like image 142
Craig Trader Avatar answered Oct 06 '22 00:10

Craig Trader