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.

StrutsTestCase 1.8 Released

I missed this one by a long shot (released 7.17.02), but I'll tell you anyway. StrutTestCase is a shortcut to using cactus to test your Struts Actions. Use it, it will descrease your development time.

I also am a little partial to this release since I helped Deryl get it working with LookupDispatchAction and Tiles. He did a great job in getting it all to work after I sent him the bugs. I had the easy job ;)

StrutsTestCase for JUnit - release 1.8
--------------------------------------

This release introduces improved support for Struts 1.1,
provides several requested enhancements, and fixes many
reported defects.

The StrutsTestCase library is now available as four distinct
releases supporting both the 2.2 and 2.3 versions of the 
Servlet specification, and both the 1.0.x and 1.1 versions
of the Struts Framework.

The StrutsTestCase library supports Struts 1.1b1 and the
latest nightly builds, as well as Cactus v1.3 and JUnit
v3.7.

Posted in Java at Aug 05 2002, 01:03:10 AM MDT Add a Comment

Roller Login Enhancement

I added an enhancement to roller today. Basically, it's a trick I learned with form-based authentication. Rather than having 2 different pages (one for the login, and one for the login failure), you use one page and specify a paramter, such as /login.jsp?error=true for the <form-error-page> value. This makes it easy to add a error message at the top with something like this:

<div class="error">
<logic:present parameter="error">
     <bean:message key="error.password.mismatch"/>
</logic:present>
</div>

Posted in Roller at Aug 04 2002, 06:16:46 AM MDT Add a Comment

Created new XHTML 1.0 and CSS 2.0 compliant Theme

You're looking at it right now! Click on the W3C icons on the bottom right to verify compliance.

Posted in Roller at Aug 01 2002, 03:58:31 AM MDT Add a Comment

Roller installed successfully!

I finally got this application installed at my ISP (kgbinternet.com). As an FYI, here are the issues I experienced while installing.

  1. I had to copy WEB-INF/lib/jaxrpc.jar to $CATALINA_HOME/common/lib.
  2. I was getting the following error on Linux/Tomcat 4.0.3:

    2002-07-31 13:28:12 ROLLER> PersistenceException getting database connection
    [org.exolab.castor.jdo.DatabaseNotFoundException: The JNDI
    name java:comp/env/jdbc/rollerdb does not map to a JDBC DataSource]
    
    ... and since I was able to reproduce this on WinXP/Tomcat 4.0.3, I upgraded to 4.0.4 at my ISP. BTW, they let ME do this - very cool ;-)
  3. Then I was getting the following error:

    TyrexDataSourceFactory:  Cannot create DataSource, Exception
    java.lang.ClassNotFoundException: org.hsql.jdbcDriver
    
    ... so I sent a message to the Keith at kgbinternet - a couple of hours ago - and I don't know if he did anything, but I'm posting on the working app as we speak!

Posted in Roller at Aug 01 2002, 03:56:20 AM MDT 1 Comment