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.

Another Java-based weblogger.

Have you ever heard of antville? I hadn't, but sounds cool:

antville is entirely written in JavaScript and based on Helma, a powerful and fast scriptable open source web application server (which itself is written in Java)

Hmmm, interesting. I don't know about "entirely written in JavaScript" though - sounds kinda fishy to me.

Posted in Roller at Aug 11 2002, 12:49:42 PM MDT Add a Comment

I Agree

with LW James. smiley #8

Posted in Roller at Aug 08 2002, 03:42:55 AM MDT Add a Comment

Dave hooked me up with a little referrer love today by mentioning that I am now an official contributor to Roller. I love this software and it should be a lot of fun to watch it grow and evolve. Now I have to start patching all the bugs I logged. This blogging stuff is pretty fun, the only drawback is I dream about what I'm going to write the next day and have a hard time falling asleep. And then when I wake up, I can't remember what I was going to post, or it's not really newsworthy. I'm sure the intrigue will wear off as I do it more.

Posted in Roller at Aug 07 2002, 05:01:21 PM MDT Add a Comment

Roller crashed last night

It crashed both on production (this site) and on my LAN. I wasn't even using it on my LAN is the unfortunate part. I have it installed on a RedHat 7.3 box that mimics my production environment, in hopes of finding solutions to these types of problems. Here's the error I found in both logs. I will investigate at a later date.

Posted in Roller at Aug 05 2002, 04:10:12 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