Java Shots #5

Spring 3.1 RC, Oracle Roadmap, Spring Job Execution

New Spring New you

Spring 3.1 RC

New RC for 3.1 with some goodies for docker and testconatainers be sure to take it for a spin

  • Improved Testcontainers support including support at development time

  • Support for Docker Compose

  • SSL Configuration enhancements

  • Improvements for Docker Image Building

Java 17 + AWS Lambda

«Record scratch» but in the cloud

Spring Future Execution

Learn how to trigger jobs from code and not just cron

JobDetail job = newJob(EmailJob.class)
                .withIdentity("email-job-" + user.id())
                .usingJobData("userId", user.id())
                .build();
Trigger trigger = newTrigger()
                .withIdentity("trigger-email-job-" + user.id())
                .startAt(futureDate(24, DateBuilder.IntervalUnit.HOUR))
                .build();

scheduler.scheduleJob(job, trigger);
    

DevLive Keynote

Watch Georges Saab give a great overview of what the future of Java is

Not mad just disappointed

businessobjects it is

If you have any videos, posts, etc, you would like to see in the next edition please reply to this email with the goods.