我正在使用 SAP Cloud Platform 中的多租户应用程序。获取租户详细信息时出现错误:
java.lang.ClassCastException:无法将类 com.sap.cloud.account.impl.TenantContextImpl 转换为接口 com.sap.cloud.account.TenantContext(找到由 com.sap 加载的匹配接口 com.sap.cloud.account.TenantContext。云账号
导致问题的代码:
public class TenantContextManager
{
public TenantContextManager() {
// TODO Auto-generated constructor stub
}
public String getCurrentAccountId() throws ServletException {
String currentAccountId;
try {
InitialContext ctx = new InitialContext();
TenantContext tenantctx = (TenantContext) ctx.lookup("java:comp/env/TenantContext");
currentAccountId = tenantctx.getTenant().getAccount().getId();
} catch (Exception e) {
throw new RuntimeException(e);
}
return currentAccountId;
}
}
我在“ ODataJPAServiceFactory
”类实现中调用此调用的一个实例。
需要注意的一点是,我创建了一个简单的 JSP 应用程序,并且相同的代码可以正常工作。