facebook

Override ActionServlet

  1. MyEclipse IDE
  2.  > 
  3. Off Topic
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #242961 Reply

    dmarkcox
    Member

    Hi all, I’m a well seasoned programmer of iSeries and Microsoft IIS vb sites, and have been studying Java over this past year, under excellent weekly tutor for six months at a software company. I’ve passed cert exams, but no real world Java exp. The soft company punted their efforts and I’ve since changed jobs. My new job has java app developed as outsource and they’ve punted that, and I’ve got my first assignment! I’m both fantastically ecstatic and fantastically tired, as cramming for my full time startup attention Jan 1. The first problem is performance. What do you think about this override to ActionServlet?

    public MyActionServlet() {
    super();
    System.out.println(“proyecto.web.MyActionServlet constructed”);
    }

    public void init()
    throws ServletException {
    try {
    super.init();
    ServletContext sc = getServletContext();
    DemonCoverages demon= new DemonCoverages(sc);
    demon.start();
    System.out.println(“proyecto.web.MyActionServlet DemonCoverages start”);
    DemonPolicys demonP= new DemonPolicys(sc);
    demonP.start();
    System.out.println(“proyecto.web.MyActionServlet DemonPolicys start”);
    } catch (Exception e) {
    System.out.println(“Error in My action Servlet: ” + e.getMessage());
    }
    }

    #242990 Reply

    Riyad Kalla
    Member

    Moving to OT > Soft Dev

Viewing 2 posts - 1 through 2 (of 2 total)
Reply To: Override ActionServlet

You must be logged in to post in the forum log in