如何将我的swing组件添加到开源企业应用程序中

时间:2013-11-11 07:30:54

标签: java swing web ejb enterprise

我正在开发基于Web的企业应用程序的产品定制。我想在EJB类中添加一个swing框架。我尝试将其直接添加到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);

.
.
.

0 个答案:

没有答案