Posted by Mitch Hermsen at 10:06 on Monday 12 July
Je kan het net zoals ik door de hitte gemist hebben, maar voor het zevende jaar op rij heeft de Eclipse community op tijd in juni een nieuwe versie van Eclipse en bijbehorende projecten uitgebracht: Helios. Deze nieuwe 3.6 versie van de populaire IDE staat op de Eclipse downloadpagina.
Enkele highlights uit de lijst met highlights zijn:
- Een Marketplace Client voor een meer “app-store” ervaring bij het zoeken naar plugins.
- Het updaten van het Web Tools Platform naar Java EE 6 specs.
- De introductie van Xtext 1.0 voor het maken van eigen programmeertalen en domain specific languages.
Verder zijn er release notes, een top 10 nieuwe features en demo’s van Helios.
Volgend jaar zijn we er weer rond deze tijd met Indigo.
Tags: Eclipse, Open Source, Tools
Posted by Jan-Hendrik Kuperus at 22:11 on Thursday 24 June
In my previous post about integrating JavaFX with regular Java, I briefly showed you how to properly construct a JavaFX object. This post will elaborate on that principle and provide the JavaFX UI a way to communicate with the Java ‘backend’.
Before I continue, I will explain the design of the application in which I used the method described below. This will allow you to decide whether this is also the way to go for your application, or maybe you still want to try something else. Ok, ready? Here we go!
Read the rest of this entry »
Posted by Richard Rijnberk at 13:06 on Wednesday 16 June
In deze post is een installatie handleiding beschreven voor het opzetten van een Development omgeving voor de Google Android telefoons.
In het kader van gemak zal ik het bij de Android standaard houden van een Eclipse omgeving met de ADT plugin. Er is van Project Kenai ook een Android plugin voor netbeans (nbandroid) maar deze laat nog het een en ander te wensen over op het gebied van code completion en useability. Daarnaast heeft de Eclipse versie ook wat grafische displays voor de GUI wat handig kan zijn bij het structureren van de informatie.
De installatie bestaat uit vier stappen
- de Android SDK
- Eclipse IDE
- ADT plugin voor Eclipse.
- Eclipse instellen voor het gebruik van de Android SDK
Read the rest of this entry »
Tags: ADT Plugin, Android, Eclipse
Posted by Jan-Hendrik Kuperus at 14:51 on Sunday 30 May
When JavaFX was first released, I didn’t give it much attention, as it felt like yet another visualization platform. With the latest release of JavaFX 1.3 and a project requiring a ‘fancy’ user interface, it was time to give it a try. The surprise came quickly: after downloading NetBeans and the JavaFX runtime, I was able to quickly build user interfaces that actually look cool.
After some tutorials and many bogus screens with crazy animations, it was time to put JavaFX to work on a real project. We had an application that receives a lot of data, processes this and stores it in a database. The data reception and processing were already fully developed in ‘regular’ Java using the Spring framework. The goal was to somehow try and integrate this existing code with a fancy JavaFX interface to visualize the data.
Read the rest of this entry »
Tags: java, JavaFX, Spring
Posted by Barend Garvelink at 16:35 on Tuesday 27 April
When setting up SPNEGO for Windows Domain authentication, you may run into a LoginException caused by KrbException: Message stream modified (41).
The error, in my case, was using lowercase for the domain name in krb5.conf.
Tags: java
Posted by Jan-Hendrik Kuperus at 10:45 on Thursday 22 April
Starting work on a new application is always a fun period. You get to choose all your frameworks from scratch and you are not limited by any previous mistakes (or decisions, as some call them). A few months ago I had to come up with an architecture that would support a graphical interface, easy configuration and potentially swapping components in and out.
The configuration requirement and the need to be able to swap components naturally made me choose Spring. Using dependency injection and Spring’s easy PropertyPlaceholderConfigurer, these requirements are easily met.
For the interface, I decided to give the Swing Application Framework (JSR 296) a go. The Swing Application Framework (SWAF from now on) is an attempt at making life with Swing a lot easier. Read the rest of this entry »
Posted by Jan-Hendrik Kuperus at 20:48 on Wednesday 21 April
Een korte update over het JCN: er is nu ook een Twitter account. Wil je op de hoogte blijven van de nieuws uit het JCN, nieuwe blogposts en algemeen nieuws uit de Nederlandse en internationale Java-wereld, volg dan @JCNSogeti!
–JH
Posted by Marcel Schutte at 18:32 on Tuesday 20 April
De maximale toegestane grootte van MQ messages is 100 MB, standaard accepteren queues geen berichten die groter zijn dan 4 MB(Wanneer dit groter moet zijn, zal dit handmatig moeten worden ingesteld).
MQ messages die groter zijn kunnen worden opgebroken in zogenaamde segmenten. Het segmenteren bij het versturen en het assembleren van de ontvangen segmenten kan zowel door de MQ-client applicatie gebeuren als door de queuemanager.
Wanneer een bericht groter is dan de maximale toegestane grootte, gedefinieerd op de target-queue, kan de Message Channel Agent(MCA) er voor kiezen om het bericht in segmenten op te knippen en dit als losse fysieke bestanden op de target queue te plaatsen Read the rest of this entry »
Posted by Jan-Hendrik Kuperus at 11:09 on Thursday 15 April
Have you ever had to try and find which Maven artifact holds your missing class? Like find out which part of Axis2 contains org.apache.axis2.context.ConfigurationContext? Well, I found a search engine that makes this a whole lot easier:
Jarvana (jarvana.com)
Enter the name of a class and you get a listing of maven artifacts that contain your class. Including groupId, artifactId and version. How cool is that?
–JH
Tags: jarvana, productivity, Tools
Posted by Willem van de Griendt at 15:31 on Wednesday 14 April
(from: OSnews.com)
In 2008 RedHat acquired Qumranet, a startup whose focus was Virtualization. Among other products Qumranet developed a management application for Virtualization.
The management application was written in C# and one of the first tasks we got was to make the management application cross platform, well this was expected considering the fact that the acquisition was done by RedHat… Read more…