BAEL-5978: Case Insensitive Enum Mapping in Spring Boot (#13061)

* BAEL-5978: Case Insensitive Enum Mapping in Spring Boot

* Move code to a new module: spring-boot-request-params
This commit is contained in:
Azhwani
2022-11-27 15:50:55 +01:00
committed by GitHub
parent f191427bea
commit 30eccf2ae8
11 changed files with 264 additions and 0 deletions
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-boot-request-params</artifactId>
<name>spring-boot-request-params</name>
<packaging>jar</packaging>
<description>Module For Spring Boot Request Params</description>
<parent>
<groupId>com.baeldung.spring-boot-modules</groupId>
<artifactId>spring-boot-modules</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
</dependencies>
</project>