Matt RaibleMatt Raible is a Web Developer and Java Champion. 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.

Interface21 on Open Source

Rod Johnson in Replies to Nonsense about Open Source says that Interface21 is the only legitimate company that can offer support for Spring.

...at least that's my interpretation...

Ben Speakmon (of SourceLabs) responds with Nonsense about Interface21.

Both articles are good reads. However, I think Ben has a good point:

One final point for Rod: why did you open source Spring at all? If you're so convinced that no one else can offer credible support for it, why not just make it proprietary?

Is Interface21 becoming the JBoss from two years ago? Will they one day make it difficult for companies to provide services around Spring like JBoss has? Fleury and Johnson will say that "professional open source" is the only way to have a truly successful project. While it may be working well for them, I tend to like DHH's stance on Rails a bit more:

I believe a Rails Inc consisting of a large group of core committers would have an unfair advantage in the training and consulting space - easily siphoning off all the best juice and leaving little for anything else. There are plenty of examples in our industry of that happening around open source tools.

It's much more satisfying to see a broader pool of companies all competing on a level playing field.

Disclaimer: In the past, I've provided training and consulting around Spring - in addition to writing a book about it. Interface21 has never done anything to discourage people from using my services. At least they haven't done anything that I know of. ;-)

Posted in Java at Sep 21 2007, 11:10:47 AM MDT 16 Comments

GlassFish 2 vs. Tomcat 6

In Switched, Dave says:

Now that Glassfish V2 is out I'm switching from Tomcat to Glassfish for all of my development. It's more than fast enough. With Glassfish on my MacBook Pro, Roller restart time is about 8 seconds compared to 16 with Tomcat. And the quality is high; the admin console, the asadmin command-line utility and the docs are all excellent. The dog food is surprisingly tasty ;-)

I did some brief and very non-scientific performance comparisons myself:

Startup Time with no applications deployed:

  • Tomcat 6: 3 seconds
  • GlassFish 2: 8 seconds

Startup Time with AppFuse 2.0 (Struts + Hibernate version) as a WAR

  • Tomcat 6: 15 seconds
  • GlassFish 2: 16 seconds

Environment:

  • JAVA_OPTS="-Xms768M -Xmx768M -XX:PermSize=512m -XX:MaxPermSize=512m -Djava.awt.headless=true -XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled -XX:+UseConcMarkSweepGC -server"
  • OS X 10.4.10, 2.2 GHz Intel Core 2 Duo, 4 GB 667 MHz DDR2 SDRAM

Since this was a very non-scientific experiment, it's possible the last two are actually the same. It's strange that Dave is seeing Roller startup twice as fast on GlassFish. Maybe they've done some Roller deployment optimization?

I realize startup times aren't that important. However, as Dave mentions, they (and context reloading) can be extremely important when developing.

Update: I got to thinking that Dave is probably referring to context reloading. Here's a comparison of how long it takes for both servers to pick up a new WAR (and start the application) when it's dropped into their autodeploy directories.

  • Tomcat 6: 14-16 seconds
  • GlassFish 2: 9 seconds

The strange thing about Tomcat is it takes 6-8 seconds to recognize a new WAR has been deployed. Does Tomcat have a polling increment that can be increased during development?

Regardless, it's impressive that the GlassFish guys have made things that much faster for developers. Nice work folks!

These days, I try to use mvn jetty:run on projects. Then I don't have to worry about deploying, just save and wait for the reload. Time to wait for AppFuse 2.0 to reload using the Maven Jetty Plugin (version 6.1.5)? 7 seconds. Of course, it'd be nice if I could somehow get this down to 1 or 2 seconds.

Maybe Dave should use the Maven integration for Roller to decrease his reload times. ;-)

Posted in Java at Sep 19 2007, 04:55:31 PM MDT 18 Comments

Proposed Tomcat Enhancement: Add flag to escape JSP's EL by default

I posted the following to the Tomcat Developers mailing list. Unfortunately, it didn't get any responses, which means (to me) that no one cares about this feature. I guess the good thing is they didn't veto it.

Hello all,

I'm working for a client that's using a proprietary Servlet/JSP-based framework that runs on Tomcat. They have their own custom JSP compiler and they're looking to move to a standard JSP compiler. One of the things their compiler supports is automatic escaping of XML in expressions. For example, ${foo} would be escaped so <body> -> &lt;body&gt;. JSP EL does not do this. It *doesn't* escape by default and instead requires you to wrap your expressions with <c:out/> if you want escaping.

I'd like to ask what developers think about adding a flag (similar to trimSpaces in conf/web.xml) that allows users to change the escaping behavior from false to true?

I think this is a good option to have as it allows security-conscious organizations to paranoid and escape all content by default.

Thanks,

Matt

Related: http://raibledesigns.com/rd/entry/java_web_frameworks_and_xss

What do you think? Is there anything wrong with adding this (optional) feature to Tomcat? Enhancing security is a good thing - right?

Update: I've entered an enhancement request for this feature and attached a patch.

Posted in Java at Sep 19 2007, 04:29:11 PM MDT 12 Comments

AppFuse 2.0 Released!

I'm extremely happy to announce we've finally finished developing AppFuse 2.0. The road to AppFuse 2.0 has been a long journey through Mavenland, annotations and generics. Thanks to all the developers, contributors and users for helping test, polish and prove that AppFuse 2 is an excellent solution for developing Java-based applications. Your time, patience and usage of AppFuse has made it the strong foundation it is today. Last but certainly not least, thanks to all the great Java developers who wrote the frameworks that AppFuse uses - we're truly standing on the shoulders of giants.

What is AppFuse? Click here to find out.

AppFuse 2.0 is available as a Maven archetype. For information on creating a new project using this release, please see the QuickStart Guide or the demos and videos.

If you've used AppFuse 1.x, but not 2.x, you'll might want to read our Frequently Asked Questions. If you have any questions or issues, please post them to the user mailing list. The Maven Reference Guide has a map of Ant » Maven commands. Maven for Newbies might also be useful if you've never used Maven before. There is some support for Ant in this release.

AppFuse 2.0 contains over 200 pages of documentation, downloadable as a PDF (3 MB). You can also download all its dependencies and install them in your local repository if you want to work offline.

For more information, please see the 2.0 Release Notes. The 2.0 series of AppFuse has a minimum requirement of the following specification versions:

  • Java Servlet 2.4 and JSP 2.0 (2.1 for JSF)
  • Java 5+

New features in AppFuse 2.0 include:

  • Maven 2 Integration
  • Upgraded WebWork to Struts 2
  • JDK 5, Annotations, JSP 2.0, Servlet 2.4
  • JPA Support
  • Generic CRUD backend
  • Full Eclipse, IDEA and NetBeans support
  • Fast startup and no deploy with Maven Jetty Plugin
  • Testable on multiple appservers and databases with Cargo and profiles

We appreciate the time and effort everyone has put toward contributing code and documentation, posting to the mailing lists, and logging issues.

We're also grateful for the help from our sponsors, particularly Atlassian, Contegix, JetBrains, and Java.net. Atlassian and Contegix are especially awesome: Atlassian has donated licenses to all its products and Contegix has donated an entire server to the AppFuse project. Thanks guys - you rock!

Comments and issues should be posted to the mailing list.

Posted in Java at Sep 18 2007, 03:22:20 PM MDT 7 Comments

AppFuse Light 1.8 Released

AppFuse Light 1.8 adds CSS Framework integration, as well as support for Stripes (1.4.2) and Wicket (1.2.6). It also has significant upgrades for JSF and Tapestry; to versions 1.2 and 4.1.3 respectively. See the Release Notes for more information on what's changed since the the beta release of 1.8.

What is AppFuse Light? Click here to find out.

AppFuse Light now offers 60 possible combinations for download:

  • Web Frameworks: JSF (MyFaces), Spring MVC (with Ajax, Acegi Security, JSP, FreeMarker or Velocity), Stripes, Struts 1.x, Struts 2.x, Tapestry, WebWork, Wicket
  • Persistence Frameworks: Hibernate, iBATIS, JDO (JPOX), OJB, Spring JDBC

AppFuse Light Screenshot - click on the box at the bottom right of AL to activate StyleSheet Switcher

If you have any questions about this release, please subscribe to the AppFuse user mailing list by sending a blank e-mail to [email protected]. You can also post questions in a forum-like fashion using Nabble: http://appfuse.org/forum/user.

If you're a developer of one of the frameworks that AppFuse Light uses - I'd love a code review to make sure I'm "up to snuff" on how to use your framework. I'm also more than willing to give commit rights if you'd like to improve the implementation of your framework.

Live demos are available at:

Yes, I realize that 60 combinations is ridiculous. I didn't create the frameworks, I'm just integrating them so you don't have to. ;-)

Unfortunately, it's a real pain to create Maven archetypes or they'd all be as easy as mvn archetype:create. Rumor is that the archetype plugin will allow you to create-from-project in the future. When that happens, I'll make sure all the combinations are available as archetypes.

Posted in Java at Sep 14 2007, 11:01:46 AM MDT 2 Comments

Oslo in September

Steve Bloom Wednesday we had a nice relaxing day in Oslo. After breakfast, we went on a 2-hour boat tour of the local fjord. The boat lulled me to sleep for most of the trip, but my mom kept elbowing me to keep me awake so I did see manage to see some things. Many islands were so small they could only fit a single house. They all looked like very enjoyable locations to spend the summer months.

After the boat trip, we browsed through an outdoor exhibit by Steve Bloom. The exhibit had some amazing photographs of wildlife - I may have to buy some to fill up my empty walls. After that, we had a bottle of wine on the docks and then headed back to check in to our hotel.

At the hotel, I had my most expensive cocktail ever - paying $26 for a Whiskey and Coke. We had a very nice dinner on Wednesday night and retired fairly early. It's nice traveling with my parents because you get a good night's sleep every night.

On Thursday, I had my talk at 11:45. I was speaking in "Gate 1", which has a stage in the middle of the room - which audiences on both sides. It was a bit difficult to talk to one audience without turning your back on the other one, but I think I did OK. I told folks I would post a link to my slides after my talk. Rather than continually linking to the individual PDF, I've created a Presentations page that will list my presentations from various conferences and such. The direct link to my JavaZone talk is here. One of the highlights of the show (for me) was meeting Aslak Hellesøy. I've always admired Aslak for all his contributions to open source.

WARNING: Please remember these slides that are merely a backdrop for my presentation. During the talk, I do say that some things are innacurate or have been fixed with recent (or future) releases. The slides don't really mean anything without the accompanying talk.

After JavaZone, my parents and I went to see the Fram Museum and then to Vigeland Park. The sculptures at Vigeland were pretty incredible, especially since we were there while the Sun was setting.

Vigeland Park

This morning, we hopped out of bed, had some breakfast and headed for the airport. After making it all the way to the gate, our flight was cancelled at the last minute. The reason is mechanical and apparently parts need to be flown in from London. Currently, it's 2:30pm and they have no idea if it will be a 4-hour or 48-hour delay. They bussed us over to the nearby Clarion Hotel, fed us lunch and gave us rooms. There's no seats available on other flights, so everyone on our flight is pretty much stuck. Hopefully we'll get out of here sometime tomorrow.

Update: Looks like we'll be on a flight tomorrow morning at 7:00 AM. They've given me no indication that I'm confirmed through Denver, so tomorrow night could be spent in Newark.

Posted in General at Sep 14 2007, 06:34:31 AM MDT Add a Comment

Does becoming a committer hurt?

I've recently been offered the opportunity to become a committer on one of the open source web frameworks I often talk about. From a professional and career standpoint, I'd be a fool to turn it down. My clients would benefit and it would look good on my resume. However, I'm wondering if it would hurt how folks perceive me when I talk about web frameworks?

Personally, I don't think it would change my views. Instead, it would probably eliminate my complaining about said framework because its developers would say "If you have a problem with that - fix it!" What do you think - if I were to become a committer on one of Java Web Framework projects, would you still think I'm agnostic when I talk about Java (or other open source) web frameworks? Of course, it's possible you don't think I'm agnostic now, so maybe I'm worried for no reason. ;-)

Posted in Java at Sep 13 2007, 02:14:01 AM MDT 23 Comments

From Helsinki to Oslo

Suomenlinna Today was another day of great weather in Helsinki. Around noon, we took a boat out to see Suomenlinna.

Suomenlinna is a major monument of military architecture. The construction of the sea fortress on the islands just off Helsinki in the middle of the 18th century was the most extensive building project during Swedish rule. When it was complete, its military shipyard was one of the biggest dry docks in the world and centres of know-how at that time. At the end of Swedish rule the fortress was being compared with the maritime fortifications at Gibraltar.

From there, we enjoyed some margaritas in the sunshine and then hopped on the Finnair bus for the airport. An hour later, we were on the plane and headed for Norway.

For some reason, our luck changed when we got to Oslo. Seems I always have bad luck in this town. This time, it wasn't as bad as my laptop dying, it was just inconvenient. We rode the bullet train from the airport to Oslo's Central Station, which happens to be right next door to our hotel. Once we got there to check in, we found out it wasn't "our hotel" until tomorrow night. Doh! Looking at e-mails I exchanged with the JavaZone guys, it's entirely my fault. We stumbled around to few different hotels and ended up finding a room at the Clarion near Central Station.

When folks say Oslo is expensive, they aren't kidding. Our room was available online for $745 US a night, but we somehow managed to get it for around $500/night. Oh well, at least we're not sleeping on the streets of Oslo tonight.

Tomorrow the JavaZone conference begins. I might go to a few sessions, but it's more likely I'll go exploring Oslo with my parents. The last time I was here, I didn't get to see any sights, and I don't want to let that happen again.

Posted in General at Sep 11 2007, 05:26:58 PM MDT 1 Comment

Walkabout in Helsinki

Helsinki Walkabout Yesterday, we spent a good portion of the day walking around Helsinki. My mom had a "walking tour" guide that we followed past the Embassies, along the water and through some city streets. After walking for 4 hours, we came back to the hotel, took some naps and then headed out to meet some locals for drinks (Hi Jussi and James!).

We got some great advice from Jussi and James and headed to the "Allied Forces HQ" building (Sokos hotel). At the top of the hotel is a bar that has great views of Helsinki. After a couple cocktails, we headed to Zetor for dinner. The Reindeer was excellent, as was the wine. We made it back to the hotel just in time to get a sauna in and collapsed into bed around 11.

Today we're heading to Suomenlinna for a couple hours and then off to the airport to catch a flight to Oslo. The weather is perfect here - not too hot and not too cold. I love it.

Posted in General at Sep 11 2007, 01:45:32 AM MDT 1 Comment

Made it to Helsinki!

Helsinki

After a long couple days of flying, we finally arrived at our hotel in Helsinki this evening. It was a pretty tiring experience getting over here, but that's my own fault since I pulled an all-nighter on Friday night (trying to finish up a training course and slides for CSS). I rewarded myself with a little first-class action from Denver to Newark, but then was in the "back of the bus" from Newark to Oslo. We had a 4-hour layover in Oslo before hopping on a 2-hour flight to Helsinki. A 45-minute cab ride, a stop at the wrong hotel, a 5 minute cab ride and we arrived at the right location. I should sleep pretty good tonight after 48 hours of little to no sleep.

We haven't seen much of the city yet, but hope to tomorrow. The hotel we're staying at is pretty nice. I especially like the fact they have very nice saunas and we're staying only a few doors down from them. Our room is incredibly large and has 3 beds in it. The bathroom even has heated floors. Good thing my mom picked up the tab for this one. ;-)

Tomorrow looks like a high of 55°F, which sounds about perfect. I brought a coat and would hate to pack it around for nothing.

Posted in General at Sep 09 2007, 11:49:07 AM MDT 7 Comments