java Programming Glossary: grained
EJB 3.1 @LocalBean vs no annotation http://stackoverflow.com/questions/10889563/ejb-3-1-localbean-vs-no-annotation want to expose both methods locally but only the coarser grained getPreferences remotely. You can do that by declaring a remote..
Dealing with “Xerces hell” in Java/Maven? http://stackoverflow.com/questions/11677572/dealing-with-xerces-hell-in-java-maven this problem with Maven Do we have to exercise such fine grained control over our dependencies and then rely on tiered classloading..
How to write console output to a txt file http://stackoverflow.com/questions/1994255/how-to-write-console-output-to-a-txt-file subsystem. These offer such things as fine grained logging control via runtime configuration files support for..
Is using Spring AOP for logging a good idea? http://stackoverflow.com/questions/2071050/is-using-spring-aop-for-logging-a-good-idea
Swing data binding frameworks http://stackoverflow.com/questions/2400998/swing-data-binding-frameworks activation which makes it useless compared to coarse grained synchronization easily written by hand . Incomplete frameworks..
How to avoid Dependency Injection constructor madness? http://stackoverflow.com/questions/2420193/how-to-avoid-dependency-injection-constructor-madness to Aggregate Services . In short create a new more coarse grained interface that hides the interaction between some or all of.. that hides the interaction between some or all of the fine grained dependencies you currently require. share improve this answer..
Is there a recommended way to use the Observer pattern in MVP using GWT? http://stackoverflow.com/questions/2832779/is-there-a-recommended-way-to-use-the-observer-pattern-in-mvp-using-gwt all the events triggered from that module. For a more fine grained approach you can always let presenters subscribe to specific..
Are there best practices for (Java) package organisation? http://stackoverflow.com/questions/3226282/are-there-best-practices-for-java-package-organisation ago I saw a question answered here regarding the fine grained organisation of java packages. For example my.project.util my.project.factory..
Which Java web framework to choose for jQuery? http://stackoverflow.com/questions/4392721/which-java-web-framework-to-choose-for-jquery like JSF Struts 2.x Wicket Echo GWT etc allows less fine grained control over the output. You've got to do some specific hacks..
Designing a Test class for a custom Barrier http://stackoverflow.com/questions/4418373/designing-a-test-class-for-a-custom-barrier choice is to reach into your barrier object for finer grained assertions for example @Test timeout 200 public void shouldContinueAfterBarrier..
What are synchronizing strategies for Prevayler? http://stackoverflow.com/questions/454294/what-are-synchronizing-strategies-for-prevayler to be a rare case you indeed can use described above fine grained locking using synchronized and java.util.concurrent. See this..
Why are interfaces preferred to abstract classes? http://stackoverflow.com/questions/639592/why-are-interfaces-preferred-to-abstract-classes It allows you to have many similar objects with fine grained detail whereas with only interfaces you must have many distinct..
Access restriction: Is not accessible due to restriction on required library ..\jre\lib\rt.jar http://stackoverflow.com/questions/9266632/access-restriction-is-not-accessible-due-to-restriction-on-required-library your compiler settings can hide the warning. A more fine grained approach is to modify your build path to explicitly allow access..
How can I visualize jar (not plugin) dependencies? http://stackoverflow.com/questions/972087/how-can-i-visualize-jar-not-plugin-dependencies settings for each Eclipse project and build a coarser grained graph from that. Later I will then go deeper however right now..
How to handle authentication/authorization with users in a database? http://stackoverflow.com/questions/9965708/how-to-handle-authentication-authorization-with-users-in-a-database Realm configuration is container specific. No fine grained control. Very spartan no remember me poor error handling no.. Homegrow a servlet filter This allows for much more fine grained control but you're going to need to write all the code yourself.. if session.getAttribute user is not null . Advantages Fine grained control. Completely container independent. Disadvantages Reinvention..
|