package com.paymentlink.controller.web; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; @Controller public class OrderController { @GetMapping("/order/{orderId}") public String order(@PathVariable String orderId) { return "order-confirmation"; } }