I have the following situation - I have front controller, one controller, one model and several jsp pages. As I understand these jsp pages are my views. For every http request controller chooses one of jsp pages.
If we use service to worker pattern then we have the following scheme:
1) request-> 2) front controller-> controller-> model-> 3) front-controller-> view -> 4) responce
So front controller renders view. So, Controller must pass to front controller some object that will keep the name of jsp file. So my question, how to name the class of this object? View? But view is jsp..