what may or may not be in java 7 from the java road trip

Site menu:

Topics

Recent Posts

Blog

 

July 2010
M T W T F S S
« Jun    
 1234
567891011
12131415161718
19202122232425
262728293031  

Past Posts

Links:

Archive for 'Java/J2EE'

what may or may not be in java 7 from the java road trip

June 14th, 2010 by Jeanne Boyarsky

Oracle talked about Java 7 at the first stop of the Java Road Trip. The main speaker was Brian Goetz, author of Java Concurrency In Practice. Despite the disclaimer that everything including syntax is subject to change, the talk was pretty interesting.  Here are my notes.  (this was largely written on my iPad; please excuse [...]

dbunit vs recreate schema

May 9th, 2010 by Jeanne Boyarsky

As I continue looking at writing integration tests for the back end of JavaRanch’s JForum install, I faced the decision of how to guarantee a clean database.  A previous post on the topic covers how to clone a postgresql database via the command line. I was originally thinking about using dbUnit to import data.  I [...]

GET vs POST and URL security

May 2nd, 2010 by Jeanne Boyarsky

Is GET or POST more secure?  Like many things in computers, it depends! Who are you trying to secure data against? The user in his/her browser People who legitimately see the URL Hackers The user in his/her browser This is the case that is usually discussed.   Some people will naively say they want to “secure” [...]