Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 Coinbase,我需要为回调设计一个接口。
我的应用程序使用 JSF 2.2,我真的不知道如何拦截 Coinbase 请求。
使用 servlet,我可以在 doGet 中检索请求的内容,但是使用 JSF 我被卡住了!
JSF 框架本身就是一个servlet。您需要从请求中获得的一切都可以通过 Faces API 在 JSF 中获得。例如,获取请求对象:
HttpServletRequest req = (HttpServletRequest) FacesContext.getCurrentInstance() .getExternalContext().getRequest();
等等。否则,您始终可以创建自定义 servlet 并将其映射到 Faces servlet 旁边的 web.xml 中。