我有3个与订单相关的springboot REST应用程序-产品,管理,位置。
目前针对3个应用程序的上下文映射。
Product application has so many REST entities and controller has mapping like this
context is /product and controller mapping is /information and many others
管理和定位应用程序使控制器具有映射
manage app context is /manage and controller is /user and many others
location app context is /location and controller is /config and many others
我想为3种不同的springboot应用程序实现以下映射。
希望分别映射到上一个:
for product application context /order/{id}/product/ and controller is /information
same for manage and location apps /order/{id}/manage
/order/{id}/location
任何帮助都会很棒。感谢您的时间。