java Programming Glossary: maintainability
How do the different technologies used for programming webapplications in Java work together? http://stackoverflow.com/questions/16206746/how-do-the-different-technologies-used-for-programming-webapplications-in-java-w definitions are often kept in seperate files to improve maintainability. Rendering of styles is also done client side . Javascript No.. very unreadable as the size of the pages grows reduce maintainability and is difficult to read. So what if we could just use additional..
Xml configuration versus Annotation based configuration http://stackoverflow.com/questions/182393/xml-configuration-versus-annotation-based-configuration . As projects grow consistency is very important for maintainability. My question is what do people prefer. Do you prefer XML based..
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 which are evil. Rather worry about readabililty and maintainability of the code in question. If there are more than two if else..
Where to place configuration properties files in a JSP/Servlet web application? http://stackoverflow.com/questions/2161054/where-to-place-configuration-properties-files-in-a-jsp-servlet-web-application the advantages disadvantages in your own opinion of maintainability. I personally prefer putting it in the classpath outside the..
How does this Java regex detect palindromes? http://stackoverflow.com/questions/3664881/how-does-this-java-regex-detect-palindromes lookarounds everywhere probably hurts readability and maintainability so we encapsulate it into assertEntirety which not only hides..
How do I import the javax.servlet API in my Eclipse project? http://stackoverflow.com/questions/4076601/how-do-i-import-the-javax-servlet-api-in-my-eclipse-project lead to future portability compatibility classpath and maintainability troubles because your webapp would not work when it's deployed..
CRUD: To Roo or not to Roo? [closed] http://stackoverflow.com/questions/4243454/crud-to-roo-or-not-to-roo design decisions usage support documentation flexibility maintainability extension points etc. For as far as I'm concerned both Spring..
How to update large XML file http://stackoverflow.com/questions/62423/how-to-update-large-xml-file combined with XPath makes application easy to write Better maintainability App code is shorter and simpler to understand. Incremental update..
What are some Java memory management best practices? http://stackoverflow.com/questions/627784/what-are-some-java-memory-management-best-practices is the suggested best practice both for performance and maintainability. Setting the reference back to null after the loop will not..
When to use <ui:include>, tag files, composite components and/or custom components? http://stackoverflow.com/questions/6822000/when-to-use-uiinclude-tag-files-composite-components-and-or-custom-componen and the final degree of abstraction reusability and maintainability of the implementation. Each approach has its own well definied..
Should I use EJB3 or Spring for my business layer? http://stackoverflow.com/questions/68527/should-i-use-ejb3-or-spring-for-my-business-layer concerns being scalability and performance and also maintainability of the code base. Here are my questions What are the arguments..
Java performance: true vs. Boolean.TRUE http://stackoverflow.com/questions/6911563/java-performance-true-vs-boolean-true be too small to be relevant. Code simplicity readability maintainability is a far more important ... in the vast majority of cases. None..
contextDestroyed() vs addShutdownHook() http://stackoverflow.com/questions/6950396/contextdestroyed-vs-addshutdownhook a web application in terms of functionality efficiency and maintainability java application shutdown servlet listeners share improve..
Max name length of variable or method in Java http://stackoverflow.com/questions/695951/max-name-length-of-variable-or-method-in-java names are problematic anyway from code readability and maintainability perspective but just out of curiosity is there a limitation..
Is it ok if I omit curly braces in Java? http://stackoverflow.com/questions/8020228/is-it-ok-if-i-omit-curly-braces-in-java question It won't change anything at all apart from the maintainability of your code. I've seen code like this for int i 0 i size i..
Java multiline string http://stackoverflow.com/questions/878573/java-multiline-string concerned about performance at all. I'm concerned about maintainability and design issues. java string multiline share improve this..
|