Tagged Questions
Controller provides a centralized entry point for handling requests. Usually is referred as a part of Model-View-Controller design pattern.
99
votes
13answers
32k views
Can an ASP.Net MVC controller return an Image?
Can I create a Controller that simply returns an image asset?
I would like to route this logic through a controller, whenever a url such as the following is requested:
...
62
votes
6answers
16k views
Can you overload controller methods in ASP.Net MVC?
Im curious to see if you can overload controller methods in ASP.Net MVC. Whenever I try, I get the error below. The two methods accept different arguements. Is this something that cannot be done?
...
26
votes
4answers
4k views
Fat models, skinny controllers and the MVC design pattern
I just read a blog post that explains MVC with a banking analogy. I have a few months of experience with web application development with an MVC framework (CakePHP), so I get the basics, but I began ...
16
votes
1answer
6k views
ASP.NET MVC - Set ViewData for masterpage in base controller
I'm using a masterpage in my ASP.NET MVC project. This masterpage expects some ViewData to be present, which displays this on every page.
If I don't set this ViewData key in my controllers, I get an ...
16
votes
3answers
17k views
Passing multiple parameters to controller in ASP.NET MVC; also, generating on-the-fly queries in LINQ-to-SQL
I'm working on a basic Issue Management System in order to learn ASP.NET MVC. I've gotten it up and running to a fairly decent level but I've run into a problem.
I have a controller named Issue with ...
15
votes
6answers
4k views
In Spring MVC, how can I set the mime type header when using @ResponseBody
I have a Spring MVC Controller that returns a JSON String and I would like to set the mimetype to application/json. How can I do that?
@RequestMapping(method=RequestMethod.GET, value="foo/bar")
...
15
votes
3answers
5k views
How to create a strongly typed master page using a base controller in ASP.NET MVC
Following the NerdDinners example, I am interested in creating a strongly typed Master Page. In order to achieve this, I use a base controller which retrieves the data for the master page. All other ...
14
votes
3answers
577 views
ASP.NET MVC - Keeping a controller thin (too many action methods)
I'm working on my first real ASP.NET MVC project and I've noticed that the controller I've been working in is getting rather large. This seemingly goes against the best practice of keeping your ...
14
votes
2answers
5k views
ASP.NET MVC: returning plaintext file to download from controller method
Consider the need to return a plain-text file from a controller method back to the caller. The idea is to have the file downloaded, rather than viewed as plaintext in the browser.
I have the ...
11
votes
4answers
278 views
BestPractices: Is it acceptable to use more than one repository in a MVC-Controller?
I have a many-to-many assocition between an Employee and a Team.
Foreach entity I have a repository.
Now I use ASP.NET MVC and I created a EmployeeController. I also created a View to edit an ...
11
votes
4answers
3k views
Rails action caching with querystring parameters
How can I cache my REST controller with Rails where my actions have query string parameters?
Example: GET /products/all.xml?max_price=200
Thx!
11
votes
2answers
9k views
.NET MVC - Call a controller Action from another controller action
I have a controller action which I would like to call another controller action.
Is this a valid thing to do. Is it possible?
11
votes
5answers
23k views
Spring-MVC Problem using @Controller on controller implementing an interface
I'm using spring 2.5 and annotations to configure my spring-mvc web context. Unfortunately, I am unable to get the following to work. I'm not sure if this is a bug (seems like it) or if there is a ...
10
votes
1answer
130 views
Are most PHP frameworks actually MVA instead of MVC?
Many PHP frameworks claim that they implement MVC design pattern. However, in their implementation, the model and view don't know each other and each communication in between must be done through ...
10
votes
1answer
199 views
Intel Chipset Programming
Does anyone know how to get start with writing a program to access, say, an intel memory controller hub, such as the intel 5400 mch or the intel p45 mch? Do I need Intel's Parallel Composer studio to ...
10
votes
7answers
636 views
PHP front controller library with support for unit testing
I am looking for a (small) library that helps me cleanly implement a front controller for my pet project and dispatches requests to single controller classes. The front controller/dispatcher and ...
10
votes
3answers
750 views
Manually instantiate a Controller instance from an arbitrary URL?
My skills are failing me, and I know I've seen the code around for this but I can't find it.
What's the quickest way to take any arbitrary URL, run it through your asp.net mvc routing system, and ...
10
votes
3answers
2k views
ASP.NET MVC Controller Lifecycle
It's my understanding that the constructor for a controller is not called during each web request. Assuming this is true, what is the lifecycle of a controller? Is is "constructed" upon app start, ...
10
votes
3answers
2k views
ASP.NET MVC Programatically Get a List of Controllers
In ASP.NET MVC is there a way to enumerate the controllers through code and get their name?
example:
AccountController
HomeController
PersonController
would give me a list such as:
Account, Home, ...
10
votes
6answers
3k views
post and get with same method signature
In my controller I have two actions called "Friends". The one that executes depends on whether or not it's a "get" versus a "post".
So my code snippets look something like this:
// Get:
...
10
votes
3answers
2k views
ASP.NET MVC OutputCache doesn't work for root URI
I'm learning ASP.NET MVC and bugged by one issue.
In the HomeController, the Index action has OutputCache attribute, but it seems doesn't work.
[HandleError]
public class HomeController : Controller
...
9
votes
1answer
759 views
How can I get Factory Girl to NEVER hit the database if I am calling Factory.build in order to make my controller tests FAST?
I am on a quest to make my Rails tests faster. I only have 520 tests, but they take 62 seconds to run in bash, and 82 seconds to run in Rubymine.
As an example of a typical controller test, I was ...
9
votes
1answer
12k views
Is the Rails update_attributes method the best choice for doing an update of a model in the database?
def update
@album = Album.find(params[:id])
if @album.update_attributes(params[:album])
redirect_to(:action=>'list')
else
render(:action=>'edit')
end
end
A Rails 1.1.6 ...
9
votes
4answers
1k views
How do you use usercontrols in asp.net mvc that display an “island” of data?
I am trying to find out how to use usercontrols in asp.net mvc. I know how to add a usercontrol to a view and how to pass data to it. What I haven't been able to figure out is how do you do this ...
8
votes
2answers
739 views
Yii's magic method for controlling all actions under a controller
Commando need's help from you.
I have a controller in Yii:
class PageController extends Controller {
public function actionSOMETHING_MAGIC($pagename) {
// Commando will to rendering,etc ...
8
votes
1answer
3k views
Can Spring Security use @PreAuthorize on Spring controllers methods?
Can Spring Security use @PreAuthorize on Spring controllers methods?
8
votes
7answers
406 views
Where does input validation belong in an MVC application?
I have a MVC application that receives an input from a form.
This is a login form so the only validation that is necessary is to check whether the input is non-empty.
Right now before I pass it to the ...
8
votes
5answers
7k views
Zend Framework, what $this->_forward is doing
I would like someone to explain me what _forward is exactly doing, I cannot see if _forward is also rendering the attached view to the action or just executing the action.
Also is it possible to ...
8
votes
4answers
2k views
StructureMap controller factory and null controller instance in MVC
I'm still trying to figure things out with StructureMap and one of the issues i'm running into is my Controller Factory class blowing up when a null controller type is passed to it. This only happens ...
8
votes
4answers
2k views
In asp.net mvc is it possible to make a generic controller?
I'm attempting to create a generic controller, ie:
public class MyController<T> : Controller where T : SomeType
{ ... }
However, when I try to use it, I'm running into this error ...
8
votes
3answers
1k views
Unit testing my controller method results in an empty ViewName?
I'm doing some simple MS unit tests on my standard, nothing special controller.
When i check the ViewName proprty, from the returned ViewResult object, it's "" (empty).
I'm under the impression that ...
7
votes
5answers
245 views
Difference between Controller and Model in MVC
I'm little confused about controller and model in MVC framework (codeIgniter). Its clear to me that controller methods calls the views and Model methods interact with database.
However, I'm little ...
7
votes
1answer
1k views
A way to exclude action filters in ASP.NET MVC?
I've run into several cases in ASP.NET MVC where I wanted to apply an action filter on every action except one or two. For example, say you have an AccountController. Every action in it requires the ...
7
votes
2answers
893 views
ASP.NET MVC download image rather than display in browser
Rather than displaying a PNG in the browser window, I'd like the action result to trigger the file download dialogue box (you know the open, save as, etc). I can get this to work with the code below ...
7
votes
4answers
2k views
Rails: Skinny Controller vs. Fat Model, or should I make my Controller Anorexic?
I know similar questions have been answered before - such as: Where should logic go, where to do certain tasks, etc. But I have a more specific question - How far should I take this axiom: "keep your ...
7
votes
4answers
5k views
Breadcrumbs in Ruby on Rails
I'm slightly insecure about my breadcrumb solution. Names and links are defined in each controller action:
<a href="http://localhost:3000/">Home</a>
<% if defined? @l1_link %>
...
6
votes
2answers
218 views
At which level should I apply dependency injection? Controller or Domain?
Hey guys, I would like to hear from you what are de the main advantages and drawbacks in applying dependency injection at the controller level, and/or domain level.
Let me explain; if I receive a ...
6
votes
5answers
143 views
Need advice before I develop a bad habit
I have a controller called AuctionsController. In it I have Actions called Index() and AuctionCategoryListing():
//Used for displaying all auctions.
public ActionResult Index()
{
...
6
votes
1answer
2k views
RSpec Test of Custom Devise Session Controller Fails with AbstractController::ActionNotFound
I am currently trying to test a custom Devise session controller with rspec. My controller looks like this:
class SessionsController < Devise::SessionsController
def create
#valid email?
...
6
votes
5answers
1k views
Status messages on the Spring MVC-based site (annotation controller)
What is the best way to organize status messages ("Your data has been successfully saved/added/deleted") on the Spring MVC-based site using annotation controller?
So, the issue is in the way of ...
6
votes
3answers
3k views
When do I initialize a view controller with initWithNibName?
I'm coding in Objective-C for the iPhone. I was wondering when I use init: and when I use initWithNibName:bundle: when creating a view controller.
I can't really find an answer to this question.
...
6
votes
1answer
7k views
When do @SessionAttributes in SpringMVC get removed? (With code sample)
Under what exact circumstances do @SessionAttributes get cleared? I've discovered some confusing behaviour when trying to use two models in a page.
When I do a GET followed by a POST using this ...
6
votes
1answer
5k views
Sorting on multiple fields with criteria in Grails
I have the following query which id like to sorty by "raceDate" and by "raceNo" asc. I can figure out how to sort by one field, but not by two, any ideas?
def list = {
params.max = Math.min( ...
6
votes
4answers
323 views
Controllers in Grails
I'm writing a small webapp in Grails and I have the following question regarding best practices for controller design and using GORM:
I'm storing the user object in session.user. Currently all my ...
6
votes
11answers
1k views
How Do You Convert a Page-Based PHP Application to MVC?
I've been struggling for some time now with exactly how to recode a page-based PHP application using an MVC framework. Just for background, I am having to move the app into MVC because my boss is ...
5
votes
4answers
329 views
ASP.NET MVC: Controller created for every request?
Very simple question: Are controllers in ASP.NET created for every http request ? Or are they created at application startup and reused throughout requests ?
For some particular http request only the ...
5
votes
1answer
688 views
Single Controller, multiple (inherited) classes (rails 3)
I have a base class inherited by 2 others via Single Table Inheritance. I want all subclasses to share the same controller/views for various reasons-the only real difference is in the model's ...
5
votes
1answer
1k views
Spring 3 Annotated Configuration Picks up @Configuration and @Component but not @Controller
So I'm trying to configure my web app without XML and go the all annotated route. I have a few classes annotated with @Configuration and @Component that are getting picked up automatically, but for ...
5
votes
1answer
932 views
When should one use asynchronous controller in asp.net mvc 2?
Thus far worked with asp.net mvc1 and just started with asp.net mvc2..... what are good candidates for executing a controller asynchronously? Should i use it for long running process or some ...
5
votes
2answers
2k views
Accessing ASP.NET MVC Model Data from external Javascript file
I'm trying to use JQuery's $.getJSON to access Model data from the Controller, and build a JSON object in the javascript to use as the user adds and removes items from a list. All JS is done in an ...