Hot answers tagged mvc
3
If you see Model, View and Controller as the layers of the application and not just components of the presentation layer, then your email validation class would be part of the Model layer because it contains business logic. I don't see where you break the pattern, not every model class has to be a data object.
The problem with "strictly adhering to the ...
1
You don't want to subvert or change the default setup, just to understand it and work within it. MVC is a description of responsibility rather than some hard requirement about naming.
The delegate .h/.m is the app delegate by name, but its responsibility is to be the app controller. It gets everything setup when the app starts and deals with application ...
1
In Spring MVC, when an exception is thrown during the handling of the request, the DispatcherServlet will consult the configured org.springframework.web.servlet.HandlerExceptionResolvers to handle the thrown exception. The resolver can then translate the exception to a view to show the user.
To use it, in short, you can either:
Implement the ...
1
Use your service method. Write to both tables within the transaction. I don't see a second DAO class, so I'm making one up for this example.
@Transactional(propagation = Propagation.REQUIRED, readOnly = false)
public void addArticleToBook(Article article, Book book) {
articleDao.saveArticle(article);
bookDao.addArticle(article, book.getId());
}
...
1
The MVC design pattern is comprised of two major parts:
presentation layer
model layer
Presentation layer provides a way for users to interact with model layer while model layer contains all of the business logic and associated task.
Model is not a class or object. Instead it contains several groups of structures, each with different aspect of domain ...
1
Every request you make a new instance of the controller will be created, therefore you're data is not shared between requests. There's a few things you can do to save the data:
Session["dateF"] = new DateTime(); // save it in the session, (tied to user)
HttpContext.Application["dateF"] = new DateTime(); // save it in application (shared by all users)
You ...
Only top voted, non community-wiki answers of a minimum length are eligible

