dinsdag 14 april 2009

JBUG.BE event 11th of June

JBUG.BE is looking for speakers for it's next event: an evening of lightning talks. A lightning talk is a short presentation with a hard limit of 5 minutes, followed by 5 minutes of Q&A and can be on any topic related to JBoss (http://en.wikipedia.org/wiki/Lightning_Talk).

So if you have found a workaround for a problem and you want to spread it into the community? Or you are doing something special that you are very proud of? why not explain it to everyone in a lightning talk?

If you want to make your voice heard, please send an email to info@jbug.be This e-mail address is being protected from spambots. You need JavaScript enabled to view it containing:

  • your name & contact information
  • a talk title
  • a short abstract

Additionally, if you plan to use presentation slides, include:

  • a final version of your presentation slides (average 3-4 slides) as all slides will be presented from a common laptop during Lightning Talks

Closing date for submissions is the 22nd of May.

A maximum of 10 speakers will be added to the agenda. Every potential presenter will receive a notification on the 24th of May whether (s)he is selected or not.

The event will take place the 11th of June 2009 from 7 - 9 PM (location to be defined).

The JBUG.be team

zondag 8 februari 2009

Benelux JBoss User Group, 27 February 2009

Information Taken from Lunatech website:

----

We would like to invite you to our fifth Benelux JBoss User Group meeting: an evening of free technical sessions presented by JBoss and RealDolmen developers.

We will meet in Rotterdam. The exact location will be communicated later, so stay tuned.

* Date: Friday, 27 February 2009
* Time: Arrival 1600-1630, presentations start 1630, finish 1900-1930
* Location: T.B.A / Rotterdam

Programme

The programme will begin with a complete presentation of JBoss Seam by Joris de Winne and Jeroen Verhulst from RealDolmen. The talk will explain the basic concepts of JBoss Seam covering how to create components, injection, outjection, scope levels, security… In addition, it will give an overview of the pros and cons of the technology illustrated by a practical example. Special attention will be paid to how to test a JBoss Seam application.

In the second presentation, Mark Proctor, lead for JBoss Drools, will talk about Rules, Workflow and Event Processing (often referred to as event stream processing or complex event processing) are at the heart of the Business Logic for most enterprises. Each one provides a declarative environment to model business problems, but is limited in the scope and range of problems it can define. Typically an enterprise will source each product from a different vendor and at some level tries to integrate the three. This integration is often very limited and superficial, such as processes only using rules for stateless decision services. This session presents the Business Logic integration Platform (BLiP) concept which offers an integrated and unified approach.

Of course, beer and networking are also part of the programme ;)

Please register as soon as possible as we have a limited number of seats.

woensdag 15 oktober 2008

JBUG.be event

On the 7th of November the first JBoss User Group Belgium event will take place. For more information have a look at JBUG.be

woensdag 9 april 2008

Oracle optimization

Great link to optimize your oracle db:
http://youngcow.net/doc/oracle9i/server.920/a96533/stats.htm

If you execute

EXECUTE DBMS_STATS.GATHER_SCHEMA_STATS('OE',DBMS_STATS.AUTO_SAMPLE_SIZE);

your db can go twice as fast.

dinsdag 6 november 2007

Springone presentation

You can find the presentation of Jan Lievens and myself about Spring and Jasper reporting back on http://www.parleys.com

woensdag 17 oktober 2007

Java Pair

Sometimes during the design of an interface I want to return two objects instead of one for a certain method. Yes, this might be bad practice. But sometimes I just need it. In good old c++ with stl, there was a solution for this by using pairs. In java, there's no such thing as pairs and a Map is too bulky. So here's the Java 5 Pair implementation:

public final class Pair {
public final A first;
public final B second;

public Pair(A first, B second) {
this.first = first;
this.second = second;
}

public A getFirst() {
return first;
}

public B getSecond() {
return second;
}
}

dinsdag 16 oktober 2007

Sun Application Server as a server

The following page http://docs.sun.com/source/819-0076/auto-restart.html#wp1027849 gives information about how to startup the sun application server as a windows service.