Posts Tagged Facelets

Weld Tutorial – Part 1

Following my recently published article about integrating Weld with Tomcat6 here’s Part 1 of my Weld tutorial.

In this first part I want to create a really really really simple example application – the so called “Hello Weld” example. For the Non-German readers: “Hello Weld” is a litte pun. “World” is “Welt” in German which is pretty close to Weld. ;) Enough jokes for now, let’s go to work. Read the rest of this entry »

, , , ,

1 Comment

JSF 2: What’s new?

Ever wanted to have a complete overview of the (cool) new features of JSF 2? Well, you might be pleased by the blog entry of Andy Schwartz which gives a really terrific introduction to JSF 2. But be warned: You need a lot of time to work through the post!

What’s New in JSF 2?

, ,

No Comments

Unified EL: Method calls using parameters

What Seam (and its Extended EL) could do a long time ago standard EL can do now, too: calling methods with parameters. Assuming you have the following bean:

public class MyBean {
 public String sayHello(final String name){
  return "Hello "  + name;
 }
}

Read the rest of this entry »

, ,

6 Comments