Posts Tagged ‘Java’

eJUG Seminar 23.09.2010: “Flex/Java-Integration”

24. September 2010 von Harald Radi

Beim gestrigen eJUG Seminar gab es einen Vortrag von Catalysts zum Thema Flex/Java-Integration.

Architecture Definition and Checking with Classycle

8. September 2010 von Ray Shanley

Classycle [1] is a nice little utility for checking your internal Java program architecture. It can find cycles and can also check conformance with an architecture definition. You can check at the package level and at the class level. It’s compact, runs fast and it’s quite easy to use. Another neat fact is that it [...]

JPF Part 2 – Integrating PluginManager with Spring

24. März 2010 von Harald Radi

In the second part of this tutorial it is all about integrating JPF with the Spring Framework.

JPF Part 1 – A lightweight alternative to OSGi?

25. Februar 2010 von Harald Radi

When developing web applications it has always been a challenge how to plug in customer specific extensions and integrations without invading the inner guts of the web application too much. This not only concerns the source code, it is quite easy to keep customer specific sources out of the application’s trunk, the main problems usually arise when thinking about deployment strategies

Resourcebundles mit Ant automatisch auf Konsistenz prüfen

2. Februar 2010 von Dominik Hurnaus

ResourceBundles werden in verschiedenen Programmiersprachen (Java, Adobe ActionScript,…) benutzt, um Anwendungen zu internationalisieren. Man erstellt für jede Sprache, in der die Anwendung später übersetzt werden soll eine Datei, in der dann die übersetzten Zeichenketten in der jeweiligen Sprache eingetragen sind. Dieser Blogeintrag zeigt, wie man ResourceBundles mit ANT automatisch Überprüfen kann.

Running Eclipse on Windows 7 64 bit

15. September 2009 von Klaus Lehner

Yesterday I’ve installed Windows 7 Ultimate 64 bit on my machine and came across some problems when trying to run Eclipse 3.5 on the 64 bit JVM.

Spring’s @Transactional does not rollback on checked exceptions

18. Februar 2009 von Klaus Lehner

Be careful when using the @Transactional annotation in your Spring-driven annotations! Checked exceptions do not cause a rollback by default.

  1. Veröffentlicht in Blog, Wissenswertes
  2. 19 Kommentare
  3. Tags: ,

EJB 3.0 Annotations mit Hibernate Lazy Loading

29. Jänner 2009 von Klaus Lehner

EJB-Annotations und Hibernate sind eine gute Sache, allerdings gibt es in Verbindung mit dem Lazy-Loading-Mechanismus von Hibernate einige Punkte, die zu beachten sind.