java Programming Glossary: maintainable
Experience migrating legacy Cobol/PL1 to Java http://stackoverflow.com/questions/1029974/experience-migrating-legacy-cobol-pl1-to-java PL1 codebase to Java How automated was the process and how maintainable was the output How did the move from transactional to OO work..
Handling passwords used for auth in source code http://stackoverflow.com/questions/12937641/handling-passwords-used-for-auth-in-source-code you store them in a centralized configurable and easily maintainable manner such as a configuration or properties file. You should..
Java Hashmap: How to get key from value? http://stackoverflow.com/questions/1383797/java-hashmap-how-to-get-key-from-value
Java Programming - Where should SQL statements be stored? [closed] http://stackoverflow.com/questions/1661921/java-programming-where-should-sql-statements-be-stored maintain Easier to understand Cons SQL code can become un maintainable Harder to check the SQL code for syntax errors Embedded in SQLJ.. Stored in a file has the disadvantage that it can become unmaintainable when the application grows. Advantage is that you don't need..
What's the best way to implement `next` and `previous` on an enum type? http://stackoverflow.com/questions/17006239/whats-the-best-way-to-implement-next-and-previous-on-an-enum-type the implementation that is the fastest cleanest and most maintainable. java optimization enums share improve this question Try..
Embedded Prolog Interpreter/Compiler for Java http://stackoverflow.com/questions/1817010/embedded-prolog-interpreter-compiler-for-java the resulting code will be significantly simpler and more maintainable. I Googled for embedded Java implementations on Prolog and found..
Why is my Spring @Autowired field null? http://stackoverflow.com/questions/19896870/why-is-my-spring-autowired-field-null this requires the least amount of code and is the most maintainable. To make the autowiring work like you wanted also autowire the..
Class with single method — best approach? http://stackoverflow.com/questions/205689/class-with-single-method-best-approach is a low cost for laying the foundation of a much more maintainable solution in the future. And finally if you want to avoid creating..
What is the relative performance difference of if/else versus switch statement in Java? http://stackoverflow.com/questions/2086529/what-is-the-relative-performance-difference-of-if-else-versus-switch-statement-i than if else or switch but the code is at least far better maintainable. As you're talking about webapplications you can make use of..
What's the best way to check to see if a String represents an integer in Java? http://stackoverflow.com/questions/237159/whats-the-best-way-to-check-to-see-if-a-string-represents-an-integer-in-java by most people because it's quicker to implement and more maintainable but it's orders of magnitude slower when non integer data is..
Avoiding instanceof in Java http://stackoverflow.com/questions/2790144/avoiding-instanceof-in-java can fix that too. But the instanceof seems so readable and maintainable by comparison. Is there anything simple but not smelly Note..
How to avoid Java Code in JSP-Files? http://stackoverflow.com/questions/3177733/how-to-avoid-java-code-in-jsp-files all that HTML the code is better readable and thus better maintainable than a bunch of scriptlets with various opening and closing..
Is usage of anonymous classes in Java considered bad style or good? http://stackoverflow.com/questions/487126/is-usage-of-anonymous-classes-in-java-considered-bad-style-or-good saved typing the code clearer more understandable and more maintainable Or does anonymous classes make the code less readable What is..
Default constructor vs. inline field initialization http://stackoverflow.com/questions/4916735/default-constructor-vs-inline-field-initialization can save lines of code and make your code slightly more maintainable by keeping initialisation in one place. Like Michael said there's..
How to break multiple foreach loop? http://stackoverflow.com/questions/551578/how-to-break-multiple-foreach-loop way to refactor this code to make it more readable and maintainable. Thanks. java refactoring foreach share improve this question..
Android Performance - 'Avoid Internal Getters/Setters' http://stackoverflow.com/questions/6716442/android-performance-avoid-internal-getters-setters reducing harmful coupling making your code more maintainable and so on. So it is generally regarded as best practice to use..
Graph database for .NET http://stackoverflow.com/questions/816055/graph-database-for-net of implementing surrogate solutions which would be hardly maintainable and would massively affect performances. I've found an application..
parse google geocode with xstream http://stackoverflow.com/questions/906855/parse-google-geocode-with-xstream all of them seemed much more complicated and no more maintainable than using XStream XmlBeans along with hand coded structure..
|