|
I am thinking of splitting that jsap file///
But Behold!! the file is generated dynamic (means other server generates and put the file in the path)...
I have identifed a few things from this jsp which I suspect cause the jsp file size to increase :
Array Name -- Start Line -- End line -- No of lines
var xArray=new Array(" ") -- 1380 -- 3525 -- 2145
var yArray=new Array(" ") -- 3525 -- 12302 -- 8777
var zArray=new Array(" ") -- 12415 -- 21186 -- 8771
var mArray=new Array(" ") -- 21192 -- 22697 -- 1505
Total No of lines ( for arrray declaration only) -->21198
So the arrary declaration itself spans a total of ~ 22K lines of code which is pretty large...
At this point ...How to split the method ???array declaration wise (or) some x no of lines wise ..It ll be helpful if someone can give more ideas and if possible the code segment..
Thanks
|