我正在定制基于 Web 的企业应用程序的产品。我想在 EJB 类中添加一个摆动框架。我尝试将它直接添加到 EJB 类中,但在部署时它会抛出javax.ejb.EJBException
. 有什么办法可以添加我的摇摆组件吗?请帮我。
public void logIn() throws ServletException, AccountNotFoundException, IOException {
HttpServletRequest request = (HttpServletRequest) (FacesContext.getCurrentInstance().getExternalContext().getRequest());
HttpSession session = (HttpSession) request.getSession();
request.login(login, password);
Account account = userManager.getAccount(login);
JFrame fr= new JFrame();
JOptionPane.showConfirmDialog(fr, "hi");
fr.setBounds(0, 0, 100, 100);
fr.setVisible(true);
.
.
.