MVC pros and cons in terms of web application development [closed] - model-view-controller

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Wondering the pros and cons for MVC architecture in terms of web application development? And What is the difference between MVC and 3-tire architecture?

As stated by #Sarfraz Wikipedia is a good starting point for this type of question.
To answer your specific question about the difference between MVC and 3-tier architecture, you need to first understand that MVC is (primarily) a GUI/User-Interface framework and design pattern.
In other words, MVC would be just one tier in your 3-tier architecture, you would still have a "service/business logic" tier and a "persistance/database" tier.

Related

Front end technology / framework [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am using Spring MVC and Hibernate for a project. I am little confused about which technology to use in front end part(in jsp part), to get better look and fill as well which is easy to adopt.
Thanks in advance, :)
I would suggest GWT with Spring and Hibernate if that fits your requirements. GWT has great widgets and a vibrant community. There's GWTP, a nice MVP framework for GWT.
For other options, go through Matt Raible's Java frameworks comparison. Spend 2/3 days to pick one that fits your requirements the best.

UML diagrams for Sencha-Touch MVC application? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I am a student, and I just have developed an application using Sencha Touch, which follows the MVCS architecture.
It includes a lots of java-script model-view-controller and store classes.
Application works fine, but the problem is with its documentation.
Can you help me with any good example that shows the various UML diagrams (class, activity, use case) and how they are designed for MVC applications?
Any tutorial or blog post would also be of help.
The list of classes is huge, and so I am not sure if I should put it here.

What are alternative cache solutions to Output Cache in asp.net MVC3? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
What are the alternative solutions to Output Cache in asp.net MVC3? I don't know whether its the only one or there are other alternative solutions and hence asked. This is just for gk, and not a technical question.
Thanks
You can implement your own cache provider or use third parties.
Examples:
MemCached http://memcached.org/
NCache http://www.alachisoft.com/ncache/
AppFabric
Output cache is just an attribute with some logic that talks to the cache provider. You can implement your own attribute which will talk to the cache provider of your choice.

Blog facilities in ASP.NET MVC 3 [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'm developing a quite simple site at least for now.
What I want is to make it possible for administrator to create posts (articles). And further to form a blog in a subdomain.
I didn't find a tutorial on blog development using ASP.NET MVC 3. Can you provide any useful tutorial/post/book.
Thanks!
This is a good tutorial from asp.net which should help you:
http://msdn.microsoft.com/en-us/data/gg702906
Hope this helps?
If you want to develop powerful dynamic websites with patterns-based which enables a clean separation of concerns and gives you full control over markup for enjoyable, agile development then MVC (Model view controller) is the best option in current software engineering cycle.
http://www.amarinfotech.com/services/mvc-architecture.html

What is the different between PAC and MVC? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I have doubt about this two pattern, like MVC and PAC, which is more powerful for a web Application.
It depends on your web application. For most, common, scenarios I would say MVC works better, but in some cases PAC might be a better fit. What are you requirements?

Resources