Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Question 1) If it makes sense to you, and other developers it sounds like a fairly decent project structure. (Taken from <a href="http://download.oracle.com/javase/tutorial/java/package/packages.html" rel="nofollow">Here</a>)</p> <blockquote> <p>You should bundle these classes and the interface in a package for several reasons, including the following:</p> <ul> <li>You and other programmers can easily determine that these types are related.</li> <li>You and other programmers know where to find types that can provide graphics-related functions.</li> <li>The names of your types won't conflict with the type names in other packages because the package creates a new namespace.</li> <li>You can allow types within the package to have unrestricted access to one another yet still restrict access for types outside the package.</li> </ul> </blockquote> <p>Question 2) Let me just clarify, in Regards to: </p> <blockquote> <p>Should I mention each module name in application.gwt.xml?</p> </blockquote> <p>you mean packages right?</p> <pre><code>... &lt;entry-point class='com.customername.projectname.AppEntryPoint'/&gt; &lt;source path="modulename.client"/&gt; &lt;source path="modulename.anotherpackage"/&gt; &lt;/module&gt; </code></pre> <p>Any package (starting from the package that the <code>.gwt.xml</code> is in) in the GWT Module, should be referenced in the <code>.gwt.xml</code> if it is to be compiled by the GWT Compiler, any sub-packages of the referenced packages will automatically be compiled by the GWT Compiler.</p> <p>Not Sure what your question is in regard to the Spring Configuration.</p> <p>Hope that Helps.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload