package com.example.edifact;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.web.bind.annotation.*;import org.springframework.http.ResponseEntity;import org.springframework.stereotype.Service;import lombok.Data;import lombok.extern.slf4j.Slf4j;import java.util.List;import java.util.ArrayList;@SpringBo..