Spring

Spring REST XML and JSON Example — step-by-step DevOps tutorial on Progressive Robot

Spring REST XML and JSON Example

URL: https://www.progressiverobot.com/spring-rest-xml-and-json-example/ Welcome to Spring Restful Web Services XML and JSON example. Sometime back I wrote an article about [Spring REST JSON](/community/tutorials/spring-rest-example-tutorial-spring-restful-web-services) and I got a lot of comments asking how to change the program to support XML. I got some emails also asking how to make application supports both XML as well as JSON. […]

Read more
Spring Boot - Cannot determine embedded database driver class for database type NONE — step-by-step DevOps tutorial on Progressive Robot

Spring Boot – Cannot determine embedded database driver class for database type NONE

URL: https://www.progressiverobot.com/spring-boot-cannot-determine-embedded-database-driver-class-for-database-type-none/ If you are reading this, then I think you have got "Cannot determine embedded database driver class for database type NONE" error while running [Spring Boot](/community/tutorials/spring-boot-tutorial) application. Below image shows my simple Spring Boot starter project where I got "Cannot determine embedded database driver class for database type NONE" error while running the […]

Read more
Spring JDBC Example — step-by-step DevOps tutorial on Progressive Robot

Spring JDBC Example

URL: https://www.progressiverobot.com/spring-jdbc-example/ Spring JDBC is the topic of this tutorial. Databases are integral part of most of the Enterprise Applications. So when it comes to a Java EE framework, having good integration with [JDBC](/community/tutorials/jdbc-example-mysql-oracle "JDBC Example Tutorial – Drivers, Connection, Statement and ResultSet") is very important. Spring JDBC ![spring jdbc, spring jdbc example, spring JDBCTemplate, […]

Read more
Spring RestController — step-by-step DevOps tutorial on Progressive Robot

Spring RestController

URL: https://www.progressiverobot.com/spring-restcontroller/ Spring RestController annotation is a convenience annotation that is itself annotated with [@Controller](/community/tutorials/spring-controller-spring-mvc-controller) and @ResponseBody. This annotation is applied to a class to mark it as a request handler. Spring RestController annotation is used to create RESTful web services using Spring MVC. Spring RestController takes care of mapping request data to the defined […]

Read more
Spring Boot CLI Setup and HelloWorld Example — step-by-step DevOps tutorial on Progressive Robot

Spring Boot CLI Setup and HelloWorld Example

URL: https://www.progressiverobot.com/spring-boot-cli-setup-and-helloworld-example/ In my previous posts [“Introduction to Spring Boot”](/community/tutorials/spring-boot-tutorial) and [“Spring Boot Components and Internals”](/community/tutorials/key-components-and-internals-of-spring-boot-framework), we have discussed about Spring Boot basics and four major Spring Boot components usage. Now we will pickup one Spring Boot Component: CLI and discuss it in details. What is Spring Boot CLI? Spring Boot CLI(Command Line Interface) is […]

Read more
Spring JdbcTemplate Example — step-by-step DevOps tutorial on Progressive Robot

Spring JdbcTemplate Example

URL: https://www.progressiverobot.com/spring-jdbctemplate-example/ Spring JdbcTemplate is the most important class in [Spring JDBC](/community/tutorials/spring-jdbc-example) package. Spring JdbcTemplate JDBC produces a lot of boiler plate code, such as opening/closing a connection to a database, handling sql exceptions etc. It makes the code extremely cumbersome and difficult to read. Implementing JDBC in the [Spring Framework](/community/tutorials/spring-framework) takes care of working […]

Read more
Spring RestTemplate Example — step-by-step DevOps tutorial on Progressive Robot

Spring RestTemplate Example

URL: https://www.progressiverobot.com/spring-resttemplate-example/ Spring RestTemplate provides a convenient way to test [RESTful web services](/community/tutorials/spring-rest-example-tutorial-spring-restful-web-services). Spring RestTemplate Spring RestTemplate class is part of spring-web, introduced in Spring 3. We can use RestTemplate to test HTTP based restful web services, it doesn't support HTTPS protocol. RestTemplate class provides [overloaded](/community/tutorials/method-overloading-in-java) methods for different HTTP methods, such as GET, POST, […]

Read more
Spring Boot Interview Questions — step-by-step DevOps tutorial on Progressive Robot

Spring Boot Interview Questions

URL: https://www.progressiverobot.com/spring-boot-interview-questions/ Today we will look into some spring boot interview questions and answers. So far, we have discussed some posts about [Spring Boot](/community/tutorials/spring-boot-tutorial) Framework with some real-time examples. In this post, I'm going to give you brief or one-shot answers to some Spring Boot Interview Questions. They are very useful when we want to […]

Read more
Spring MVC Example — step-by-step DevOps tutorial on Progressive Robot

Spring MVC Example

URL: https://www.progressiverobot.com/spring-mvc-example/ Welcome to Spring MVC Example. Sometime back in [Spring MVC Tutorial](/community/tutorials/spring-mvc-tutorial), I explained how to create Spring MVC application using Spring Tool Suite. But today, I will be creating a basic hello world spring MVC application using maven and Eclipse. Spring MVC Example Spring MVC is based on Model-View-Controller architecture. Below image shows […]

Read more
Spring Security Example Tutorial — step-by-step Security tutorial on Progressive Robot

Spring Security Example Tutorial

URL: https://www.progressiverobot.com/spring-security-example-tutorial/ Spring Security provides ways to perform authentication and authorization in a web application. We can use spring security in any servlet based web application. Spring Security ![spring security example tutorial](images/spring-security-example-tutorial-section-1.png) Some of the benefits of using Spring Security are: Proven technology, it's better to use this than reinvent the wheel. Security is something […]

Read more
CHAT