The Source for Java Technology Collaboration
User: Password:
Register | Login help    

Search

Online Books:
java.net on MarkMail:


View by: Most Recent | Topic | Community | Webloggers | James Gosling   
Monthly Archives:    

Blogs by topic J2SE and user tchangu

• Accessibility • Ajax • Blogging • Business • Community 
• Databases • Deployment • Distributed • Eclipse • Education 
• EJB • Extreme Programming • Games • Grid • GUI 
• IDE • Instant Messaging • J2EE • J2ME • J2SE 
• JavaOne • Jini • JSP • JSR • JXTA 
• LDAP • Linux • Mobility • NetBeans • Open Source 
• OpenSolaris • P2P • Patterns • Performance • Porting 
• Programming • Research • Security • Servlets • Struts 
• Swing • Testing • Tools • Virtual Machine • Web Applications 
• Web Design • Web Development Tools • Web Services and XML 


J2SE

As it can be seen above, the password is embedded in the source as clear text. No corporate risk management folk would approve of exposing passwords, which would potentially expose access to sensitive data. Of course there could be many solutions that would fix this issue by combining technology and process. Here is a partial solution that addresses technology by extending the IDE and by using Java 5 Annotations. Of course, to make the solution complete, one needs to define process that defines a clear separation of responsibility (who does what)
on Feb 25, 2006 | Permalink | Discuss
One of the things that keep popping up often is a need to write batch programs that is started from command line. Every single time its always been either reinvent the wheel or copy/paste from old code. So recently decided to put an end to this practice by looking at CLI solution from Apache.
on Dec 19, 2005 | Permalink | Discuss
Always thought that the Hash implementations (table & map) used buckets that are prime in number. But recently, after digging around the source code to see what that default size resulted in a bit of a puzzling situation int hash = key.hashCode();
on Jun 18, 2005 | Permalink | Discuss