15

I don't understand why Java uses the reverse of a (probably hypothetical) domain name as the name of a package, while mostly there is no connection between the domain name that some people uses and the products that they have. A lot of developers don't even have any domain.

What are the reasons of this naming convention, if any?

Louis Rhys
  • 6,042
  • 11
  • 42
  • 59
  • Even without a domain it's common practice in Java-land to pretend you do for package naming. E.g. in your case you would use `com.louisrhys.xxx.yyy` whether or not you own `louisrhys.com` – Wayne Molina Oct 31 '11 at 15:45

3 Answers3

16

Global uniqueness. If everyone, or at least serious developers who distribute their code beyond in-house projects, adheres to that convention, it will never happen that you get name clashes when you add another third-party library to your project. Bear in mind that Java was initially propagated as a solution for code deployment anywhere, anytime (via applets and remote classloading over the internet).

Kilian Foth
  • 107,706
  • 45
  • 295
  • 310
  • 3
    In Java 1.4 Sun used open source Apache XML tools without changing the name space. Made it rather "interesting" to try to have a newer version in your own applications. –  Oct 31 '11 at 08:45
  • 3
    `Java was initially propagated as a solution for code deployment anywhere, anytime` As opposed to what Java is now? I don't know about you but I still somewhat successfully use Java WebStart to deploy client side code to thousands of PC's in an internal network. This makes "Release Early, Release Often" far less painful for everybody. – maple_shaft Oct 31 '11 at 12:07
  • 2
    Not necessarily true. You will eventually lose a domain name; whether by dying or just forgetting to renew it. Someone else could buy it, and, without realizing, put out a Java package that conflicts with yours. And there's also the possibility that someone owned the domain before you and put out code that your code conflicts with. – Kevin Feb 14 '16 at 22:19
  • @maple_shaft It hasn't been that for most users since the decline of Java applets. Rather it's just another platform for applications (like, say, Qt or XUL or Electron). – user253751 Dec 04 '16 at 23:23
12

As Wikipedia says on the subject,

"The Java Language Specification establishes package naming conventions to avoid the possibility of two published packages having the same name."

LaLeX
  • 221
  • 1
  • 2
2

I found two Oracle-published documents that discuss the naming of packages. There is the Naming a Package page in the Java Tutorials and the Packages section of the Java Language Specification.

The primary purpose of this convention is to try to minimize conflicts between packages published by different organizations.

Thomas Owens
  • 79,623
  • 18
  • 192
  • 283