Don't DELETE Me Bro
Deleting Data in a Spring Boot REST API
Enthusiastic and motivated software engineer with diverse experience
Deleting Data in a Spring Boot REST API
Updating Data in a Spring Boot REST API
POST accepts new data into a Spring Boot REST API
Wiring up a controller method to support POST requests isn’t all that different from setting up a GET handler. However, taking data in to our API raises new considerations. How do we make sure the input meets our quality standards? How do we handle the fields required in our data layer that are not provided by the input object?
Testing your Spring Boot REST API
Building a Mock object for custom UserDetails implementations in Spring Security
While working through the Spring Security aspects of my SpringBikeClinic.com project, I implemented SecurityUser, a custom UserDetails object which was composed with a User database entity. For unit testing my @Controller code, I wanted a clean way to provide a mock instance of my custom user type.