Comprehensive Practical Tutorial for Spring MVC and RESTful API Development
Add Required Dependencies
Include core Spring MVC and dependent JAR files in your project's build path: spring-webmvc, spring-core, spring-context, spring-beans, spring-expression, and commons-logging.
Configure web.xml
Add the DispatcherServlet configuration to WEB-INF/web.xml:
<!-- Configure Spring MVC DispatcherServlet and request m ...
Posted on Fri, 29 May 2026 17:25:53 +0000 by freshrod
Managing Environment Profiles in Spring Applications
Managing Enviroment Profiles in Spring Applications
When developing web applications, it's common to have different configurations for development, testing, and production environments. Spring provides a robust mechanism called profiles to manage these environment-specific configurations through the @Profile annotation.
Using the @Profile Annot ...
Posted on Wed, 20 May 2026 19:28:12 +0000 by kelesis
Implementing a Web Blog System with SSM Framework and JWT Authentication
Building a Blog Platform with Spring MVC, Spring, and MyBatis
A web-based blog system is implemented using the SSM stack (Spring MVC, Spring, MyBatis). This platform consists of five core pages: user authentication, blog creation, blog editing, article listing, and post details. The backend is designed to fulfill the following functional requir ...
Posted on Fri, 08 May 2026 02:54:07 +0000 by cuongvt