Matt RaibleMatt Raible is a writer with a passion for software. Connect with him on LinkedIn.

The Angular Mini-Book The Angular Mini-Book is a guide to getting started with Angular. You'll learn how to develop a bare-bones application, test it, and deploy it. Then you'll move on to adding Bootstrap, Angular Material, continuous integration, and authentication.

Spring Boot is a popular framework for building REST APIs. You'll learn how to integrate Angular with Spring Boot and use security best practices like HTTPS and a content security policy.

For book updates, follow @angular_book on Twitter.

The JHipster Mini-Book The JHipster Mini-Book is a guide to getting started with hip technologies today: Angular, Bootstrap, and Spring Boot. All of these frameworks are wrapped up in an easy-to-use project called JHipster.

This book shows you how to build an app with JHipster, and guides you through the plethora of tools, techniques and options you can use. Furthermore, it explains the UI and API building blocks so you understand the underpinnings of your great application.

For book updates, follow @jhipster-book on Twitter.

10+ YEARS


Over 10 years ago, I wrote my first blog post. Since then, I've authored books, had kids, traveled the world, found Trish and blogged about it all.

[TSE] Using Dynamic Languages with Spring with Rod Johnson and Guillaume LaForge

Spring 2.0 has dynamic language support. To make it work, you do need a Java interface as a contract between callers and dynamic beans. There's no special requirements on the interface. It's a "POJI" and doesn't have to extend or implement anything. For example:

public interface Messenger {
    String getMessage();
}

There's 3 ways of configuring Groovy beans:

  1. GroovyScriptFactory <bean> element defining source location and properties
  2. <lang:groovy> element from a <lang> namespace
  3. POBD (Plain old <bean> definition) - this is unique for Groovy since it can be compiled into Java bytecode

[Read More]

Posted in Java at Dec 08 2006, 01:27:43 PM MST 2 Comments

[TSE] Rapid Web Application Development with Rob Harrop

There's a couple of other sessions I should probably go to, namely Juergen's talk on Transactions and Mark Fisher's Message Driven POJOs Rock! However, transactions is generally a pretty boring topic and I don't see myself developing any MDPs in the next two weeks. If you don't use your knowledge in two weeks, you generally lose it, so I'll wait to learn more about MDPs until someone pays me to. I know a fair bit already, so I don't know that there's a whole lot more to learn.

I'm attending Rob Harrop's Rapid Web Application Development Essentials talk. With any luck, I'll learn some new tips that we can use in AppFuse.[Read More]

Posted in Java at Dec 08 2006, 11:42:37 AM MST 7 Comments

[TSE] Domain Driven Design with Eric Evans

I've arrived at The Spring Experience, 45 minutes late for the first talk. I tried to get up early, but decided I'd rather get 6 hours of sleep instead of 4. I'm now sitting in Eric Evans' Introduction to Domain-Driven Design talk and the room is packed. I've never seen Eric talk before, but he seems a bit unprepared. His PowerPoint presentation is not in full-screen mode, so you can see where he hasn't finished slides and such. He's also very soft-spoken and seems to have an interesting way of convincing the audience his ideas are good. I feel like I'm sitting in some sort of NPR Seminar.[Read More]

Posted in Java at Dec 08 2006, 08:37:28 AM MST 1 Comment

Florida Bound

I'm getting ready to hop on a plane at the Boise airport. I'll be stopping in Denver to pick up our puppy and then flying to Ft. Lauderdale to attend The Spring Experience conference. Should be a fun weekend. I'll be staying on Singer Island, which sounds pretty nice after being in cold Idaho all week.

Singer Island Sunrise

Update: It doesn't look like I'm going to make Rod's Keynote tonight. Hopefully someone else will blog it.

Posted in General at Dec 07 2006, 06:35:41 AM MST Add a Comment

In Boise, heading to Florida on Thursday

This week, I'm in Boise, Idaho teaching a Spring Fundamentals course. It's cold here, just like it is in Denver this week.

Downtown Boise

I'm heading out early Thursday morning (Country Bry is teaching a Hibernate class that day) for The Spring Experience in Florida.

The Westin in Hollywood

I'll be staying with Julie's Mom in West Palm Beach, so hopefully the commute to the show won't be too bad. My AppFuse session is on Saturday night, but I'm expecting a light showing after Terracotta's recent announcement. Jonas Bonér is doing a session at the same time as mine. Maybe if I bring a bunch of beer, I can still draw a crowd. ;-)

Posted in Java at Dec 05 2006, 08:12:41 AM MST 1 Comment

Vacation in Denver

The Westin Tabor Center This afternoon, Julie and I are heading downtown to checkin to The Westin Tabor Center. Tonight is my company's Holiday Party and we figured it was a good excuse to spend the night out. James Goodwill turned me on to the idea about a year ago. The idea is to take your spouse "on vacation" in the town you live in. It's quite cool, because you rarely get a chance to enjoy the town you live in. We're only doing one night, but Jim recommends you do 2 or 3. The last time we did a vacation in Denver, it was our anniversary and we had a blast.

For the party tonight, we'll be dining at La Fondue, with the Parade of Lights just happens to pass in front of. After that, we'll all be heading to Denverginity. It should definitely be a fun night!

Posted in General at Dec 02 2006, 02:47:35 PM MST 1 Comment

Facelets 1.1.12 Released

From Jacob's blog:

Facelets 1.1.12 was just uploaded to Java.net and includes many small bug fixes for JSF 1.1 (MyFaces 1.1.4) and JSF 1.2 (RI 1.2_03b5).

Download Here

This release is considered 'draft' until users call it stable for production use. More information is found over at Facelets' web site.

In most cases, when an open source project says "more information can be found on our website", you expect to go to the website and see more information. Not so with Facelets. All I could find was this announcement. How about a detailed list of bug fixes?

Update: I found the magic link on the mailing list which I subscribe to with Nabble's RSS Feed.

Posted in Java at Dec 02 2006, 11:48:47 AM MST 1 Comment