mvc pattern in java ee and migrating from spring to java ee 7
问题 I used spring MVC in the following manner: @Controller class MyControllerClass { @RequestMapping... method(){ ServiceCall()... //put something to modelAndView object here and redirect to jsp page. return "home"; // this will redirect data to home.jsp } } @Service class MyServiceClass{ @Transactional SomeServiceMethod(){ DaoMethod(); } } @Repository class MyDaoClass{ DaoMethdon(){...} } /view/myjsps.jsp path to view directory set in spring.xml Question: Can any body explain to me (preferably