Testing the Current Date/Time in Spring and Java

Keith Shakib Articles, Development Technologies & Tools, Java, Spring, Testing, Tutorial 1 Comment

Attention: This article was published over 3 years ago, and the information provided may be aged or outdated. While some topics are evergreen, technology moves fast, so please keep that in mind as you read the post.How often in Java services do we need to use the current date and time? Most of us would agree we use it quite …

A Lesson On Managing Expectations and Meeting Deadlines

The Mythical Person Month: A Lesson On Managing Expectations & Meeting Deadlines

Justin Hancock Architecture, Articles, Consulting, Soft Skills, Spring 3 Comments

One of my favorite things about the life journey that I find myself on is that I’m always learning. Every. Single. Day.

Some days I learn something new… most days I learn something new, actually. But then there are the days when I am reminded of something I learned years ago but have somehow forgotten for a time.

The Mythical Person Month is one such topic. It is a distinct and important lesson that I have learned many times now it seems.

Bloom Filters in Java Dev

Applying Bloom Filters to Java Dev: A Naive Implementation

Tazz Vose Articles, Development Technologies & Tools, Java, Testing Leave a Comment

Over the course of this blog, I will be focusing on using Bloom Filters in Java development. Weโ€™ll briefly talk through what they are and why theyโ€™re handy, and then weโ€™ll dive into a hypothetical use case and tutorial.

As a note, this post is just meant to get you started on the track to using a Bloom Filter in the wild. What we discuss here will stay high-level but will give you a general idea of how it would work on a project.

Without further ado, letโ€™s get started.

Improve Java Skills By Going Old School

Want to Get Better at Java? Go Old School.

Rik Scarborough Articles, Java, Programming, Spring 1 Comment

So youโ€™re a Java programmer, and you want to take your skills to a higher level. Iโ€™m going to suggest you take a project and go old school.

Over the course of this blog, Iโ€™ll explain what โ€œgoing old schoolโ€ means as well as give you some tips and tricks to get started. Weโ€™re going to step away from most modern tools and go back to the basics, so you gain a deeper understanding of what Java is and how it works. By the end, you should be well on your way to improving your Java skill set.

SQL Server Agent Jobs with Spring Batch

Monitoring SQL Server Agent Jobs with Spring Batch

Josh Green Articles, Development Technologies & Tools, Java, Modernization, Spring, Spring Batch, SQL, SQL Server Leave a Comment

In this blog post, I will demonstrate a technique to query the status of a SQL Server Agent job that executes the SSIS package. SQL Server Agent scripts are asynchronous in nature. This can make it difficult to make code decisions based on the execution status of a script of this type.