In ASP.NET 5 MVC 6 Microsoft merged the normal MVC controller class (Controller
) with the Web Api controller class (ApiController
). Now there is just a Controller
class to inherit from, which includes the features of WebApi too.
So now it is not as simple to distinguish MVC and WebApi controllers. Both inherit from the Controller
class. The only difference I can spot is that the routing information of WebApi is still provided by the attributes HttpGet
, HttpPost
, HttpPut
and HttpDelete
. But now it is possible to do the same with MVC controllers using attribute routing, just with different attributes.
Even the features seem to have merged. MVC controllers support now content negotiation too.
The concrete questions are:
Is there still a real difference, or is it just the way the routes are specified? Which way is now the preferred one to create web apps?
(Almost) empty MVC controller:
public class HomeController : Controller
{
public List<Person> Index()
{
return new List<Person>()
{
new Person() {Firstname = "test1", Lastname = "test2"},
new Person() {Firstname = "test3", Lastname = "test4"}
};
}
public IActionResult About()
{
ViewData["Message"] = "Your application description page.";
return View();
}
public IActionResult Contact()
{
ViewData["Message"] = "Your contact page.";
return View();
}
public IActionResult Error()
{
return View("~/Views/Shared/Error.cshtml");
}
}
(Almost) empty WebApi controller:
[Route("api/[controller]")]
public class ValuesController : Controller
{
// GET: api/values
[HttpGet]
public IEnumerable<Person> Get()
{
return new List<Person>()
{
new Person() {Firstname = "test1", Lastname = "test2"},
new Person() {Firstname = "test3", Lastname = "test4"}
};
}
// GET api/values/5
[HttpGet("{id}")]
public string Get(int id)
{
return "value";
}
// POST api/values
[HttpPost]
public void Post([FromBody]string value)
{
}
// PUT api/values/5
[HttpPut("{id}")]
public void Put(int id, [FromBody]string value)
{
}
// DELETE api/values/5
[HttpDelete("{id}")]
public void Delete(int id)
{
}
}
EDIT:
If you want to try if content negotiation works, you have to include this code into your Startup.ConfigureServices method, because per default the return type is JSON only.
services.Configure<MvcOptions>(options =>
{
options.AddXmlDataContractSerializerFormatter();
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…