Thanks for your reading my words.
Maybe I haven't described it clearly.Let us take an example:
suppose I have 5 actions named action1,action2,action3,action4 and action5. They forward to jsp1,jsp2,jsp3,jsp4,and jsp5. The 5 jsps all have to include 3 chips(chip1,chip2,chip3) as parts.
If I query the data which chips need in action1-5, that is a bad design,because if one of the 3 chips have to be changed ,I have to modify all the 5 actions.
I have tried to write 3 actions name chipaction1,chipaction2,chipaction3,they query the data ,and then forward to chip1,chip2,and chip3,then include the url-patterns in jsp1-5,but that seems doesn't work.
I really wonder the best design.
Thanks in advance.