java package name convention failure - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T21:45:58Zhttp://stackoverflow.com/feeds/question/420945http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/420945/java-package-name-convention-failure2java package name convention failureJason S2009-01-07T16:18:40Z2009-01-07T18:15:06Z
<p>I'm just coming up the learning curve for Java SE & have no problem with the usual Java convention for package names, e.g. <code>com.example.library_name_here.package_name_here</code></p>
<p>Except.</p>
<p>I've been noticing a failure to abide by this in some fairly well-known packages. </p>
<ul>
<li><a href="http://jline.sourceforge.net/" rel="nofollow">JLine</a>: <code>jline.*</code></li>
<li><a href="https://sourceforge.net/projects/jacob-project/" rel="nofollow">JACOB</a>: <code>com.jacob.*</code> (there is no jacob.com)</li>
<li><a href="https://jna.dev.java.net/" rel="nofollow">JNA</a>: <code>com.sun.jna.*</code> (disclaimer on the site says NOTE: Sun is not sponsoring this project, even though the package name (com.sun.jna) might imply otherwise.)</li>
</ul>
<p>So I'm wondering, are there instances where the usual reverse-domain-name convention breaks down, and there are good ways to get around it? The only cases I can think of revolve around domain-name ownership issues (e.g. you change the project hosting/domain name, or there's already a well-known package that has "squatter's rights" to your domain, or your ownership of the domain runs out & someone else snaps it up).</p>
<p>edit: if I use my company's domain name, and we are bought out or have a spin-off, what should we do with package names? keep them the same or rename? (I suppose renaming is bad from the point of view that compiled classes referring to the package then lose)</p>
http://stackoverflow.com/questions/420945/java-package-name-convention-failure/420966#4209660Answer by Bombe for java package name convention failureBombe2009-01-07T16:23:06Z2009-01-07T16:23:06Z<p>The only thing that matters (IMHO) is that the parts of the package name are “sorted” by importance, i.e. that you don’t end up with gui.myprog, util.myprog, main.myprog but with myprog.gui, myprog.util, and myprog.main. Whether the package name really begins with a top-level domain followed by a domain name is of no concern to me.</p>
http://stackoverflow.com/questions/420945/java-package-name-convention-failure/420971#4209718Answer by sblundy for java package name convention failuresblundy2009-01-07T16:24:08Z2009-01-07T16:24:08Z<p>It's a naming convention. There's no real requirement or even expectation that the package name maps to a domain name.</p>
http://stackoverflow.com/questions/420945/java-package-name-convention-failure/420975#4209750Answer by Michael Borgwardt for java package name convention failureMichael Borgwardt2009-01-07T16:24:44Z2009-01-07T16:24:44Z<p>You can't use language keywords as parts of a package name, that's another case where the domain name convention cannot be applied - tough luck for <a href="http://long.com/" rel="nofollow">LONG Building Technologies</a></p>
<p>But then, the convention is just that, a convention, and pretty much the only reason why it exists is that it minimizes the chance of different projects accidentally choosing the same package name. If you can't follow it, it's not really a big problem.</p>
http://stackoverflow.com/questions/420945/java-package-name-convention-failure/421033#4210330Answer by Martin OConnor for java package name convention failureMartin OConnor2009-01-07T16:39:22Z2009-01-07T16:39:22Z<p>The general idea is that two organizations would not own the same domain, so using the domain name as part of the package ensures that there are no namespace clashes. This is only a recommendation however.</p>
<p>There is a good reason for someone to have packages in the sun namespace. If they are providing an implementation of a public API, it's often necessary to implement the classes in the API's namespace.</p>
http://stackoverflow.com/questions/420945/java-package-name-convention-failure/421198#4211980Answer by James Camfield for java package name convention failureJames Camfield2009-01-07T17:21:28Z2009-01-07T17:21:28Z<p>If you're making your way up the Java learning curve, I would worry more about making your packaging structure clear so you can easily find the class you are looking for.</p>
http://stackoverflow.com/questions/420945/java-package-name-convention-failure/421384#4213840Answer by thuktun for java package name convention failurethuktun2009-01-07T18:15:06Z2009-01-07T18:15:06Z<p>Packages are used to avoid ambiguity and collisions between components built by various entities. As long as you follow the convention, and nobody illicitly uses your slice of the package namespace pie, you shouldn't need to worry about what others have used.</p>