Questions tagged [jakarta-mvc]

The Jakarta MVC (RI codename during Java EE 8 era was "Ozark", then later renamed to "Krazo")

The Jakarta EE's request based MVC framework, initially proposed as response to popular request from Spring MVC folks. Jakarta EE already has a component based MVC framework for long, Jakarta Faces. The name of the Jakarta EE MVC framework is just "Jakarta MVC".

Like Jakarta Faces, Jakarta MVC can use any view technology, including JSP and Facelets.

Historically, it was proposed as part of Java EE 8, but since February 2017, MVC has been abandoned and transferred to the individual Ivar Grimstad. MVC was no longer part of JEE. The RI, "Ozark" has been transferred to Eclipse and renamed to "Krazo". The intent is to make it part of the upcoming Jakarta EE 10.

See also

6 questions
2
votes
1 answer

WELD-001408: Unsatisfied dependencies in OpenLiberty with implicit bean scanning (CDI) disabled

Recently, I've discovered the MVC Toolbox for Jakarta MVC. I decided to give it a try. So I'm developing an application with MVC and the Toolbox. I'm packaging the application as an EAR and aiming to deploy it in OpenLiberty. Following this advice,…
mthmulders
  • 9,483
  • 4
  • 37
  • 54
1
vote
0 answers

Using Facelets with Spring MVC

The new Java EE 8 MVC (JSR 371) is planning to use facelets as the view technology for MVC. Is it a bad idea to use facelets with Spring MVC? e.g. https://github.com/acichon89/springmvcfacelets There seems to be almost no support for this online yet…
DD.
  • 21,498
  • 52
  • 157
  • 246
1
vote
1 answer

Java EE 8 MVC: How do you startup with controller?

I am aware that Java EE 8 MVC is shiny and new and might not have everything I hoping there is a way to call a view from a controller on startup @Path("home") @Controller public class HomeController { @Inject Models models; @Inject …
RWhyte
  • 13
  • 1
  • 6
1
vote
1 answer

MVC redirect causes HTTP Status 500 (Internal Server Error)

I'm currently trying out MVC 1.0 (JSR-371) and I'm facing a problem right now. I have a controller for my Mainpage which just shows some products. Here is the code for that: @Path("/welcome") @Controller public class WelcomeController implements…
rKatex
  • 77
  • 1
  • 8
0
votes
2 answers

View Engine for Grizzly, Jersey, and Ozark MVC

I'm trying to create an MVC app using Java EE MVC API implementation - Ozark. I'm using Grizzly as embedded web server. Of course, with Ozark is a JAX-RS implementaion - Jersey. This is my server class with run method being invoked by main…
Julez
  • 1,010
  • 22
  • 44
0
votes
2 answers

Java EE 8 - MVC 1.0 release date

When I can expect realising full or nearly full version of MVC 1.0. I'm interesting to continue developing my web app in this technology as I don't like to do my own MVC with Servlets/JSP or use WebForms-like JSF/Facelets. I'm interesting in rather…
Michał Ziobro
  • 10,759
  • 11
  • 88
  • 143