addcourseinfoformcontroller.java

来自「Spring+hibernate学生在线选课系统」· Java 代码 · 共 67 行

JAVA
67
字号
/*
 * Created on 2005-10-15
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package org.mmxbb.schoolelective.mvc.course;


import javax.servlet.ServletException;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.view.RedirectView;


import org.mmxbb.schoolelective.model.Courseinfo;
import org.mmxbb.schoolelective.service.CategoryService;



/**
 * @teacher Administrator
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class AddCourseinfoFormController extends AbstractCourseinfoFormController {

	   private CategoryService categoryService;
	    
	    public void setCategoryService(CategoryService categoryService){
	        this.categoryService = categoryService;
	    }
	    
	    public CategoryService getCategoryService(){
	        return this.categoryService;
	    }    
	    protected static Log log = LogFactory.getLog(AddCourseinfoFormController.class);
	    
	    public AddCourseinfoFormController() {
			// OK to start with a blank command object
			setCommandClass(Courseinfo.class);
			// activate session form mode to allow for detection of duplicate submissions
			setSessionForm(true);
		}

		protected ModelAndView onSubmit(Object command) throws ServletException {
		    log.info("onSubmit is called");
		    
		    Courseinfo obj =(Courseinfo)command;
		    Integer cate_id=obj.getCategoryid();
		    getCourseinfoService().createCourseinfo(obj);
		    
			log.info("redirect to " + getSuccessView());
			return new ModelAndView(new RedirectView(getSuccessView()+"?cate_id="+cate_id));
		    
		}
		
	
	
		
		
	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?