This project is a simple Spring Boot application that provides an API endpoint to check if a string is a palindrome and to return the reversed string.
Prerequisites
- Java 8 or higher
- Maven
git clone https://github.com/MoteneJan/Palindrome_API.git cd Palindrome-API
Parameters:
input
(query string parameter): The input string to be processed.- e.g,.
input
- "racecar"
Response:
{
"ReversedString": "your reversed string",
"IsPalindrome": true/false
}