Simple CDI Events Example

In this post I will show you how to produce a CDI event and how to handle it even if it is deployed in another application.

The Event class

A simple JSF Page

This page only shows a simple message from the backing bean (the call to the bean produces the bean’s initialization).

Backing Bean

Here we Inject an event (LoggerEvent) via CDI Inject annotation. Then inside the init method annotated with PostConstruct we fire the event with a new instance of the event. This is the simplest way to fire a CDI event. No matter who are listening to this event will be notified.

A simple Logger Event Handler

This class will listen for events annotated with the keyword @Observes. Because of this, it will execute the method. In this case it will print to the console a log message passed to the constructor of the event instance when it was created: Hello from CDI events as you can see in the next picture.

Result (console result)

cdi events
cdi events

AS you can see, it’s just that simple to create a CDi event and listen to it. This technique uses the Observer design pattern here with the help of @Observes annotation.

Feel free to comment. Download the souce code CDIEvents.

Thanks.

Date Range Validation with Annotations in JAVA

In this post I will show you how to validate date ranges with JAVA annotation.

simple date range validation
simple date range validation

XHTML page:

This is a simple JSF page with two date inputs and a submit button. When we press the button a the validation process will start via the backing bean that call a super class method.

Backing Bean:

Note that in line 3 we have the super class named: AbstractController. In line 16, in the action method, we call a validate method and we pass as a parameter the dto wich has the data itself.

Abstract Controller

In this abstract class we simple call the validate() method in the received DTO.

Data Transfer Object(DTO):

Here is the point where we annotate at the class-level with our special annotation. We simple use the annotation with 2 parameters. This parameters are optional and it’s purpose is only to personalize the error message. In case that your date fields are different from those in this example you must provide the annotation with more parameters, as you will see in the next class.

Annotation:

Here is where the magic happens. I will not discuss how annotations work, but I will cover the essential part: the constraint validation. The inner class DateIntervalValidator is responsible for the validation of the date fields with the help of reflection. We get the get methods of the two date fields and then we verify if endDate is after startDate. If that condition is false, we return false, otherwise we return true.
The message is required if you want personalize your message.
The start is required if your first date field is different from startDate. It indicates the name of the first field.
The end is required if your end date field is different from endDate. It indicates the name of the second date field.
The purpose the startDesc and endDesc is to use as a placeholder in the message parameter.

Validator:

This class is the trigger of all the validation process. When in the DTO we call the validate method, is this method we are calling, because this class is the superclass of the DTO. It calls the annotation and validates the fields. If there are any erros it will collect them in a set, here called as result. Then we iterate all over the set and add the error messages to faces context.

The next few files demonstrate the same logic applied to 2 or more groups of date validations.


multiple date range validation
multiple date range validation

XHTML:

Backing Bean:

DTO:

Plase feel free to comment or to suggest new features.
You can read more about this topic here
Download source code.
Thanks.

Static Binding vs Dynamic Binding in JAVA

Check out “Tides Calculator”

https://play.google.com/store/apps/details?id=pt.joaobrito.android.tides

This is not actually a new app. This is in update to an existing app that I have forgot the signing key password. So, as I’m not able anymore to update the other app, I’ve decided to publish this new one.

Of course I apologise for all of this but it’s nothing more I can do…

Please comment or suggest new features. Thanks in advance and I hope you comprehend…

Posted from WordPress for Android

2014 FIFA WORLD CUP BRAZIL

Have you already tried the new amazing features of this app?
Now you can view real time info and statistics about all players in this competition. Check it out now!

https://play.google.com/store/apps/details?id=pt.joaobrito.wcb

image

image

image

Posted from WordPress for Android

Rubrica: As apps dos nossos leitores… [13]

from Pocket http://ift.tt/UvGoWq

Olá a todos! Cá estamos nós para mais uma rubrica que pretende divulgar as apps desenvolvidas pelos nossos leitores. Fiquem atentos aos fantásticos trabalhos que temos para vos mostrar e, já sabem que se quiserem ver aqui a vossa app, enviem-nos um email para: divulga_apps@pplware.com

World Cup Brazil – 2014

I want to thank you all that followed the cup with us. And of course a big and special thanks to PPLWARE because they have suggested our app today in their blog …which is a great honour to us!

image

Tomorrow I will deploy a new version with some improvements. Today was the first real test of the app in production, so tomorrow naturally will be a new version with some fixes detected today during the first match.

Stay tuned!

and THANK YOU!!

Why don’t you give it a try? The World Cup 2014 is here!

https://play.google.com/store/apps/details?id=pt.joaobrito.wcb

A simple but objective android app that allows you to follow the world cup championship of Brazil in real time no matter where you are…

Posted from WordPress for Android