我按照官方文档创建了自己的 occaddon webservice 层:https ://help.sap.com/viewer/e5d7cec9064f453b84235dc582b886da/1905/en-US/8b96a80f8669101482d4f3c1e27b4eb6.html并创建了“虚拟”控制器:
package org.training.trainingoccaddon.controllers;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@RequestMapping(value = "/{baseSiteId}/newResource")
public class ExtendedCustomersController {
@RequestMapping(method = RequestMethod.GET)
@ResponseBody
public String getNewResource() {
return "newSampleResource";
}
}
但是,当我尝试访问
https://localhost:9002/rest/v2/{baseSiteId}/newResource
它把我重定向到hac。
我已经创建了添加到 localextensions.xml 的新 occ 插件 执行 ant addoninstall -Daddonnames="occaddon" -DaddonStorefront.ycommercewebservices="ycommercewebservices"
使用 ant clean all && hybrisserver debug 重新构建应用程序
但它不起作用。我错过了什么吗?
另外,我该如何设置招摇?