一个使用获取数据并显示的问题。

阅读更多
在程序中为获得所有Teacher的list并显示在jsp页面中,打算通过来实现取数据,运行起来可以正常显示数据,这个没有问题。

现在问题是当所在的jsp页面提交后,我配置了validators,validation没通过,将返回该jsp页面,这个时候没有起作用,数据没有显示出来。

请问该如何处理,才能确保返回该jsp页面时,数据依然能够显示。

谢谢!

产生list列表的action:
package net.ocas.action.util;

import java.util.ArrayList;
import java.util.List;

import net.ocas.service.CourseService;
import net.ocas.service.TeacherService;

import com.opensymphony.xwork.ActionSupport;

public class ListAction extends ActionSupport{
	
	private List list=new ArrayList();

	public String getAllCourses() throws Exception{
		CourseService cs=CourseService.getInstance();
		list=cs.findAll();
		return SUCCESS;
	}
	
	public String getCoursesWithOutTeacher() throws Exception{
		CourseService cs=CourseService.getInstance();
		list=cs.findCoursesWithOutTeacher();
		return SUCCESS;
	}

	
	public String getAllTeachers() throws Exception{
		TeacherService ts=TeacherService.getInstance();
		list=ts.findAll();
		return SUCCESS;
	}
	
	
	public List getList() {
		return list;
	}

	public void setList(List list) {
		this.list = list;
	}
}


xwork.xml的配置片断:

		
		
			/manage/add_course.jsp
			/manage/add_course.jsp
			
			
		




		
			/login.jsp
		


	



jsp页面的代码片断:

	

	
	

你可能感兴趣的:(JSP,.net,XML,HTML)