Jul 29

How heise.de reports today was an early version of the Eclipse SDK 4.0 released. It is, according to the developer as a playground for ideas for the coming Genaration especially in the field of popular Java development environment. Some proposals have already found their way into the latest release 3.6 (code name: "Helios"). The new look and the already well-dressed performance definitely make you want more.

Link: http://www.eclipse.org/eclipse4/

Similar items:

posted by johnnypark \ \ tags: , , ,

July 2001

To this short film you need to actually say anything except watch and necessarily understand the message. :-)

Similar items:

posted by gklinkmann \ \ tags: ,

Jun 16

Sometimes you want to know is how long it has taken its own Java program. If one is satisfied with the indication of milliseconds, this is a couplet.

  new Date ( ) ; Date start = new Date ();
 / / Do something
 . println ( "Anzahl Millisekunden: " System. Out. Println ("number of milliseconds"
    System . currentTimeMillis ( ) - start. getTime ( ) ) ; + (System. CurrentTime Millis () - start. GetTime ()); 

If you want to but at somewhat longer current programs do not need to convert hours and minutes, it becomes more difficult. What you get on the internet all for advice on the condition that they did not invent the wheel. A look at the Apache Commons libraries helps here, as more often.

  ; import org.apache.commons.lang.time.DurationFormatUtils;
 ...
 new Date ( ) ; Date start = new Date ();
 / / Do something
 . println ( "Laufzeit: " System. Out. Println ("Term"
    ( System . currentTimeMillis ( ) - start. getTime ( ) , "HH:mm:ss" ) ; + DurationFormatUtils. FormatDuration (System. CurrentTime Millis () - start. GetTime (), "HH: mm: ss"); 

Similar items:

posted by gklinkmann \ \ tags: , ,

May 30

All presentations at this year's JAX participants receive not this time on DVD, but only via an Adobe AIR application for which one to http://intellibook.de/special must register.

Adobe AIR is not just like Flash resources and must carefully (such as Flash too) Once installed on the computer. A web application would have preferred.

Some speakers were so nice, her lectures on slideshare.net to make available to the. In slideshare although there are the possibility to set up events, but this was not used for this year's event, so the presentations scattered across.

I'm trying to search, and have gone on to hit under the tag jax 2010 combined. If I was to have overlooked one, I have to apologize in advance and would appreciate a link in the comments.

Similar items:

posted by gklinkmann \ \ tags: , ,

May 2005
Jax 2010 logo

If I currently would have to build a Java web application, I would probably connected with the Spring Framework to implement. In the context of Jax 2010 Jürgen Höller (one of the chief developers of Spring) a review, an inventory and an outlook given in Spring.

After playing and playing Spring, like many other frameworks, and alternative technologies (such as SWT and GWT), in his view, particularly in the role as a platform and standards, "enabler" a major role. , Means that frameworks are more innovative and higher release cycles have as standards such as JPA. Rather, they offer even the possibility of new standards to integrate into existing environments.

So it is possible to develop with Spring 3.0 applications using standards such as JPA 2.0 or JSF 2.0 and still on older JBoss, Websphere or Tomcat can even run installations.

This integral role will continue, according to Juergen Hoeller determine the path of Spring. Here for June / July 2010, version 3.1, and in 2011 the version 3.2 are provided. These are, as in the past by Milestone releases always kept close to the latest versions of the standards or are even one step ahead.

Similar items:

posted by gklinkmann \ \ tags: , ,