Kategorien
Java

„Hibernate – A Developers Notebook“ – migrating to Hibernate 3.0, Chapter 7

Chapter 7 is working in Hibernate 3 (as opposed to chapter 6). The most challanging in this chapter migrationwise are StereoVolumeType.java and SourceMediaType.java . Change the import-package names. The Usertype-stuff is now under the package „org.hibernate.usertype“. It won’t compile, yet as there are some methods missing. For SourceMediaType.java: [java] public Object replace(Object original, Object target,…

Kategorien
Web

Suchmaschine Vivisimo aka Clusty

Stephan Lamprecht postet über Vivisimo, eine Metasuchmaschine, die ihre Suchergebnisse in Clustern gruppiert. Hier die Zusatzinfo: Clusty ist das „Kunden“-Interface, Vivisimo ist laut FAQ eher für Geschäftskunden. Clusty biete auch Toolbars an (habe ich noch nicht ausprobiert). Clusty ist jedenfalls ein Abfrage wert, gerade wenn die zu erwartenden Treffer sehr unterschiedliche Themen ansprechen.

Kategorien
Leben Software-Entwicklung Medien

Fernsehkanäle und Sortieralgorithmen

Wie kann ich die sich beim automatischen Sendersuchlauf ergebene zuf䬬ige Reihenfolge von TV-Kan䬥n in eine vorgegebene Reihenfolge bringen?

Kategorien
Selbst-Management

Selbstdisziplin

Steve Pavlina hat eine Artikelserie über Selbstdisziplin geschrieben. Für ihn ist Selbstdisziplin die Fähigkeit, etwas zu tun (das man sich vorgenommen hat), unabhängig davon, wie man sich fühlt. Dies stimmt auch in etwa mit dem überein, was die deutsche Wikipedia dazu sagt. In diesem Post gebe ich Pavlinas Grundgedanken wider und vergleiche mit dem, was…

Kategorien
Java

„Hibernate – A Developers Notebook“ – migrating to Hibernate 3.0, Chapter 6

You can skip the entire chapter 6 if you use Hibernate 3. It is based on the interface PersistenceEnum which already became deprecated in Hibernate 2 as the author points out in the errata. The interface has apparently removed in Hibernate 3.

Kategorien
Java

„Hibernate – A Developers Notebook“ – migrating to Hibernate 3.0, Chapter 5

As in chapter 4, copy the hbm.xml-files and change the DTD-reference. Leave CreateTest.java, QueryTest.java and QueryTest2.java alone – they will still compile. Copy the AlbumTest.java file, change the hibernate-imports and the constructor calls as well as int parameters to Integer. This should be easy as we have done that before.

Kategorien
Java

„Hibernate – A Developers Notebook“ – migrating to Hibernate 3.0, Chapter 4

In this chapter, we add an Entity called „Artist“ as well as an entity called „Comments“. Copy both Track.hbm.xml and Artist.hbm.xml from the examples-distribution and remember to change the DTD-reference if necessary. When using „ant schema“, SAX complained it couldn’t find ${src.root}/com/oreilly/hh/hibernate-mapping-2.0.dtd for Artist.hbm.xml. That’s strange because it didn’t complain about it in Track.hbm.xml before.…

Kategorien
Java

JSSE 1.0 bug keeps me busy

A bug in JSSE 1.0.3 keeps me busy the whole monday – ending up with migrating from JDK1.2.2 to JDK1.4.2 „out of the cold“. In one of my maintenance project that realize some kind of an online-shop, „we“ use a third-party website for payment. Last friday afternoon they installed a new SSL-certificate. Since then, the…