[Be el o ge]

I ♥ The Web

[Be el o ge]

Entries Tagged as 'Java'

Eclipse Subversive Plugin unter Ubuntu 9.04 installieren

May 24th, 2009 · No Comments

Configuring Eclipse Ganymede with subversion in Ubuntu 8.04

Funktioniert genauso auch mit Ubuntu 9.04.

  1. Follow the installation instructions on the subversive download site.
    Since you will use the native javaHL connector implementation, be sure to choose the javaHL implementation from the update site
  2. Install the java HL API on ubuntu: sudo apt-get install libsvn-javahl
  3. Add the library directory where javahl resides to your eclipse.ini (located in the root folder of your eclipse installation). Just add the following line into it:
    -Djava.library.path=/usr/lib/jni.
  4. Restart eclipse
  5. Verify your setup.
    Goto Window>Preferences>Team>SVN and click the “SVN Connector” tab.
    The native javaHL connector should be selected
  • Delicious
  • Twitter
  • Facebook
  • LinkedIn
  • Reddit
  • Slashdot
  • Technorati Favorites
  • Digg
  • Share/Bookmark

[Read more →]

Tags: Java

Google App Engine unterstützt Java

April 8th, 2009 · No Comments

Google App Engine Blog: Seriously this time, the new language on App Engine: Java™.

Das coole daran ist, dass mit Java nicht nur Java an sich unterstützt wird, sondern auch Sprachen die sich in JVM kompatiblen Byte-Code übersetzen lassen: JRuby, Javascript (Rhino) oder Scala.

Rock on!

Edit:
JRuby on Rails
Dynamic languages on Google App Engine – an overview

  • Delicious
  • Twitter
  • Facebook
  • LinkedIn
  • Reddit
  • Slashdot
  • Technorati Favorites
  • Digg
  • Share/Bookmark

[Read more →]

Tags: Java

Open-Source-Java vollständig

June 21st, 2008 · No Comments

Open-JDK hat den Java Test Compatibility Kit (TCK). OpenJDK ist damit vollständig kompatibel zur Java-SE-Implementierung.

  • Delicious
  • Twitter
  • Facebook
  • LinkedIn
  • Reddit
  • Slashdot
  • Technorati Favorites
  • Digg
  • Share/Bookmark

[Read more →]

Tags: Java

Pivot

June 19th, 2008 · No Comments

Pivot ist ein neues Java-GUI-Framework. Eingesetzt werden kann es sowohl für Standalone-Applikationen, als auch für Applets. Lange verflucht, könnten Applets nach deren Überarbeitung in Java SE 6 U10 im Zusammenspiel mit neuen GUI-Frameworks wie Pivot durchaus als Basis für RIAs verwendet werden.

Das User-Interface kann sowohl in XML beschrieben als auch in Java programmiert werden.

Weitere Links:
Tutorial
Greg Brown: Introducing Pivot

  • Delicious
  • Twitter
  • Facebook
  • LinkedIn
  • Reddit
  • Slashdot
  • Technorati Favorites
  • Digg
  • Share/Bookmark

[Read more →]

Tags: Java

JSF Managed Beans programmatisch instanziieren

April 9th, 2008 · No Comments

Managed Beans werden vom JSF Laufzeitsystem automatisch instanziiert, wenn ein Value- oder Method-Binding angefordert wird. Setzt man Session- oder Application-Scope Managed Beans zum Beispiel als Pseudo Singleton ein, besteht häufig nicht die Notwendigkeit Attribute oder Methoden der GUI (also der Webseite) mit der Bean zu verknüpfen.
Um die Managed Bean trotzdem vom JSF Laufzeitsystem instanziieren zu lassen, genügt folgender Aufruf:

1
2
3
4
5
final ELResolver el = FacesContext.getCurrentInstance()
    .getApplication()
    .getELResolver();
final Object o = el.getValue(FacesContext.getCurrentInstance()
    .getELContext(), null, managedBeanName);

managedBeanName ist dabei der in faces-config.xml konfigurierte Name der ManagedBean.

  • Delicious
  • Twitter
  • Facebook
  • LinkedIn
  • Reddit
  • Slashdot
  • Technorati Favorites
  • Digg
  • Share/Bookmark

[Read more →]

Tags: Java