FirstAction.java
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. package StudyCourse;
  2. import javax.sql.DataSource;
  3. import java.sql.Connection;
  4. import javax.servlet.ServletContext;
  5. import javax.servlet.http.HttpServletRequest;
  6. import javax.servlet.http.HttpServletResponse;
  7. import javax.servlet.http.HttpSession;
  8. import org.apache.struts.action.Action;
  9. import org.apache.struts.action.ActionForm;
  10. import org.apache.struts.action.ActionForward;
  11. import org.apache.struts.action.ActionMapping;
  12. import org.apache.struts.action.ActionMessage;
  13. import org.apache.struts.action.ActionMessages;
  14. import java.util.Vector;
  15. import org.apache.struts.action.DynaActionForm;
  16. public final class FirstAction extends Action{  
  17. public ActionForward execute(
  18. ActionMapping mapping,
  19. ActionForm form,
  20. HttpServletRequest request,  
  21. HttpServletResponse response) throws Exception {
  22.     DynaActionForm courseTypeIdForm = (DynaActionForm) form;         
  23. Integer courseTypeId = (Integer)courseTypeIdForm.get("courseTypeId");
  24.     ServletContext context = servlet.getServletContext();
  25. DataSource dataSource = (DataSource)context.getAttribute(Constants.DATASOURCE_KEY);
  26.         DB db = new DB(dataSource);
  27.         
  28. int iTypeId=0; 
  29. if (courseTypeId!=null){
  30. iTypeId= courseTypeId.intValue();
  31. }
  32. else{
  33. iTypeId = CourseType.GetFirstCourseType(db);
  34. }
  35.         Vector courseList = new Vector();
  36.         HttpSession session = request.getSession();
  37.         
  38. // String PageForward;
  39. // ActionMessages errors = new ActionMessages();
  40.         
  41. session.setAttribute(Constants.COURSE_TYPE_LIST_KEY,CourseType.SearchCourseType(db));
  42. courseList = Course.SearchCourse(db,iTypeId,"","");
  43. session.setAttribute(Constants.COURSE_LIST_KEY,courseList);
  44. db.close();
  45.     return (mapping.findForward("toCourseMain"));
  46.   }
  47. }