Tag: spring

  • 3 Reasons I’m Switching from Eclipse to VSCode as a Java Developer

    3 Reasons I’m Switching from Eclipse to VSCode as a Java Developer

    I have been writing Java code for 22 years, mostly server-side web applications. I started using Eclipse as my primary IDE in 2003, 18 years ago. Since then I’ve used Eclipse, or MyEclipse, if not daily then at least several times a week. And I like it as an IDE. I’ve evangelized it to others, […]

  • Jump Start Your App With A Spring User Management App

    Jump Start Your App With A Spring User Management App

      Many of the web applications I build require user management. Registration, Login, that sort of thing. Implementing that properly always takes more time than I expect.  So I’ve written a flexible, easily configurable, User Management Framework on Spring Boot.  It is a fully functional user management application with registration, email verification, login, logout, update […]

  • Spring AWS SQS Queue Problem QueueDoesNotExistException

    Spring AWS SQS Queue Problem QueueDoesNotExistException

    I have been working building a Spring Boot application running at AWS. Today I was working on setting it up to receive SQS messages. Like many things in Spring Boot, it is remarkably simple. Just create a method with the @SQSListener annotation like this: @SqsListener(“queue-name”) public void queueListener(String message, @Header(“SenderId”) String senderId) { // Do […]

  • Spring is Upon Us

    I took my motorcycle for the first ride of the season today.  Took a little coaxing to get her started, but then it was just great.  Nice day for a ride, the bike was running well, traffic was smooth, I couldn’t ask for more.  I just did a short ride, to the library and back, […]