- Java Shots
- Posts
- Java Shots #5
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
🥳Java 17 is now available on #AWSLambda and it has support for #SnapStart.
New language features include records (JEP 395), sealed classes (JEP 409) and multiline strings (JEP 378).
Read about the changes in our release blog aws.amazon.com/blogs/compute/…
— Mark Sailes (@MarkSailes3)
5:06 PM • Apr 27, 2023
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
Hi friends - have you ever put your model elements in a package called model?
Don’t.
Try harder.
Let’s not give this Ruby on Rails anti pattern any more time in our lives and code.
Please.
— Josh Long (@starbuxman)
11:10 AM • Apr 27, 2023
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.
