Jul 20Managing Environments in Spring Boot: Creating Profiles for Development and ProductionIn software development, ability to manage environments is crucial. Profiles in Spring Boot allow developers to define sets of configuration properties that are specific to certain environments, such as development, test, staging, or production. …Spring Boot2 min readSpring Boot2 min read
May 8Swagger-Open API to Spring Boot 3 Application(Web Flux)Documenting a REST API is essential to make it user-friendly and accessible. With the help of the OpenAPI specification and Swagger, creating comprehensive documentation is a breeze. What is Swagger? Swagger is a toolset that allows developers to design, build, and document RESTful APIs. It provides an easy-to-use interface for…Swagger4 min readSwagger4 min read
Apr 18Swagger-Open API to Spring Boot 3 Application(Web MVC)Documenting a REST API is essential to make it user-friendly and accessible. With the help of the OpenAPI specification and Swagger, creating comprehensive documentation is a breeze. What is Swagger? Swagger is a toolset that allows developers to design, build, and document RESTful APIs. It provides an easy-to-use interface for…Swagger2 min readSwagger2 min read
Apr 7Parsing a Request Body in Spring Boot using @RequestBody AnnotationSpring Boot is a powerful framework that simplifies the process of building robust and scalable web applications. In this article, we will explore how to parse a request body in Spring Boot using the @RequestBody annotation and Kotlin for our code examples. let’s consider the following code snippet: @RestController @RequestMapping("/test") class RestAPIController()…Spring Boot2 min readSpring Boot2 min read
Dec 20, 2022Converting Teachable Machine trained model to CoreML modelTeachable Machine Teachable machine is a web based tool to train ML models using Tensorflow. Training the model Create classes, and name the classes with classifying labels. Train the model, if required you can change parameter Learning rate and number of Epochs. We can upload the trained model to the…Coremltools2 min readCoremltools2 min read