1.       ShowDataSHRDSOURCE.java 类:建立与 oracle 的连接,通过给 getViewData() 函数传入一个参数 tableName ( getViewData(String tableName) 函数 ), 根据 tableName 参数执行相应得 sql 语句,实现从 oracle 中读取要显示在地图中的数据;

2.       修改 MapServlet.java

search ()方法多添加一个参数 tableName ,把 tableName 的值传给需要它的 getViewData(String tableName) 函数;

 

实现 doGet() 方法,多接受一个参数 tableName ,把 tableName 传给 search ()函数 ;

(即: String tableName =request.getParameter(“tableName”); search(request,type,tableName );

3.       index2.jsp

type tableName 的值传给 MapServlet

Var url=’ BasePlatform_project/servlet/MapServlet ’;

Var pars=’type= ’+par+’&tableName’=tableName;

( 注:路径为: url?pars; 即: /servlet/MapServlet ’type= ’+par+’&tableName’=tableName )

 

 

问题:

Jsp,servlet,java 类之间的传递有待学习