-
1. Re: Using MVC 1.0 (part of Java EE 8) in WildFly
ctomc Jan 27, 2015 8:44 AM (in response to juergen.zimmermann)At the moment it is just to early to say what will our implementation be.
Current state MVC spec & RI impl (Ozrak) are still in deep development mode and as such it is hard to tell what end impl will look like.
On end of the day when EE8 is out we will support also MVC 1.0 but how, that will be decided along the way.
-
2. Re: Using MVC 1.0 (part of Java EE 8) in WildFly
juergen.zimmermann Jan 27, 2015 9:03 AM (in response to ctomc)Thank you, Tomaz.
-
3. Re: Using MVC 1.0 (part of Java EE 8) in WildFly
mkouba Mar 16, 2016 11:13 AM (in response to juergen.zimmermann)Hey guys, I've been able to run an MVC app with Ozark on WildFly 10. See also Try out Ozark (Java EE 8 MVC) on WildFly 10.
-
4. Re: Using MVC 1.0 (part of Java EE 8) in WildFly
gtudan Sep 22, 2017 2:22 AM (in response to juergen.zimmermann)Since this is still the number one hit on google when searching for MVC and Wildfly, I'd like to follow up:
Ozark has come quiet a long way and implemented most of it's features on the JAX-RS and CDI-APIs instead of hooking into jersey.
There is a RestEasy module that makes integrating with wildfly really easy: https://www.mvc-spec.org/ozark/docs/install-javaee.html
If you want to integrate even further, here is my take on a subsystem for wildfly 10. It will take care of activating MVC if it detects the @Controller annotation in your deployment archive: https://github.com/gtudan/wildfly-ozark
-
5. Re: Using MVC 1.0 (part of Java EE 8) in WildFly
nimo22 Dec 11, 2017 6:07 AM (in response to ctomc)Two years later..:)
Are there any plans to provide MVC within Wildfly out of the box?
-
6. Re: Using MVC 1.0 (part of Java EE 8) in WildFly
ctomc Dec 11, 2017 8:38 AM (in response to nimo22)MVC 1.0 was dropped from EE8 and as such is not part of EE spec currently.
see MVC 1.0 is here to stay - JAXenter
But you can install it as part of your application as it is now.
see https://www.mvc-spec.org/ for more info.
There is also guide on how to use it on WildFly.