domain « MVC Controller « Spring Q&A





1. can i override the method() in controller OR domain?    forum.springsource.org

You need to 'push-in' refactor the methods you want to change. You can do this from the refactor menu in STS or simply by moving the method from the ITD (.aj) ...

2. Using SimpleFormController when domain object is subclassed    forum.springsource.org

Using SimpleFormController when domain object is subclassed Background I have two domain objects: - Person - User, which extends Person I have an HTML form where the basic properties of a ...

3. Mutliple Domain Controllers    forum.springsource.org

Mutliple Domain Controllers Hi, I am trying to use NTLMProcessingFilter for authentication purpose. Here's the attached xml

4. not pass domain object from one controller to another    forum.springsource.org

not pass domain object from one controller to another PositionsController: Code: public class PositionsController extends MultiActionController { ... public ModelAndView add(HttpServletRequest request, HttpServletResponse response, Position position) throws Exception { try { ...