Merge branch 'example-mvc-cxf' of https://github.com/Daniel-Dos/tomee
Project: http://git-wip-us.apache.org/repos/asf/tomee/repo Commit: http://git-wip-us.apache.org/repos/asf/tomee/commit/ab4cbe17 Tree: http://git-wip-us.apache.org/repos/asf/tomee/tree/ab4cbe17 Diff: http://git-wip-us.apache.org/repos/asf/tomee/diff/ab4cbe17 Branch: refs/heads/master Commit: ab4cbe170de415969f8fc3cd70138bb0ad65e238 Parents: 4c835ca 642f47d Author: Jonathan Gallimore <[email protected]> Authored: Thu Dec 6 22:26:34 2018 +0000 Committer: Jonathan Gallimore <[email protected]> Committed: Thu Dec 6 22:26:34 2018 +0000 ---------------------------------------------------------------------- examples/mvc-cxf/README.md | 23 + examples/mvc-cxf/pom.xml | 135 + .../superbiz/application/MVCApplication.java | 23 + .../org/superbiz/controller/HomeController.java | 32 + .../superbiz/controller/PersonController.java | 154 + .../main/java/org/superbiz/model/Address.java | 72 + .../main/java/org/superbiz/model/Errors.java | 50 + .../main/java/org/superbiz/model/Messages.java | 39 + .../main/java/org/superbiz/model/Person.java | 125 + .../superbiz/persistence/PersonProducer.java | 43 + .../superbiz/persistence/PersonRepository.java | 29 + .../src/main/resources/META-INF/beans.xml | 24 + .../src/main/resources/META-INF/persistence.xml | 40 + .../src/main/webapp/WEB-INF/views/change.jsp | 134 + .../src/main/webapp/WEB-INF/views/home.jsp | 37 + .../src/main/webapp/WEB-INF/views/insert.jsp | 131 + .../src/main/webapp/WEB-INF/views/list.jsp | 92 + examples/mvc-cxf/src/main/webapp/index.jsp | 28 + .../bootstrap/css/bootstrap-datepicker.css | 471 ++ .../resources/bootstrap/css/bootstrap-theme.css | 587 ++ .../bootstrap/css/bootstrap-theme.css.map | 1 + .../bootstrap/css/bootstrap-theme.min.css | 6 + .../bootstrap/css/bootstrap-theme.min.css.map | 1 + .../resources/bootstrap/css/bootstrap.css | 6757 ++++++++++++++++++ .../resources/bootstrap/css/bootstrap.css.map | 1 + .../resources/bootstrap/css/bootstrap.min.css | 6 + .../bootstrap/css/bootstrap.min.css.map | 1 + .../fonts/glyphicons-halflings-regular.eot | Bin 0 -> 20127 bytes .../fonts/glyphicons-halflings-regular.svg | 288 + .../fonts/glyphicons-halflings-regular.ttf | Bin 0 -> 45404 bytes .../fonts/glyphicons-halflings-regular.woff | Bin 0 -> 23424 bytes .../fonts/glyphicons-halflings-regular.woff2 | Bin 0 -> 18028 bytes .../bootstrap/js/bootstrap-datepicker.js | 2096 ++++++ .../js/bootstrap-datepicker.pt-BR.min.js | 1 + .../webapp/resources/bootstrap/js/bootstrap.js | 2377 ++++++ .../resources/bootstrap/js/bootstrap.min.js | 7 + .../webapp/resources/bootstrap/js/jquery.min.js | 4 + .../main/webapp/resources/bootstrap/js/npm.js | 13 + .../src/main/webapp/resources/images/tomee.png | Bin 0 -> 6217 bytes .../src/main/webapp/templates/footer.jsp | 46 + .../mvc-cxf/src/main/webapp/templates/menu.jsp | 47 + examples/pom.xml | 1 + 42 files changed, 13922 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tomee/blob/ab4cbe17/examples/pom.xml ---------------------------------------------------------------------- diff --cc examples/pom.xml index 2531aa7,c56fbbc..ded7bc7 --- a/examples/pom.xml +++ b/examples/pom.xml @@@ -174,7 -174,7 +174,8 @@@ BROKEN, see TOMEE-214 <module>mp-metrics-counted</module> <module>mp-metrics-timed</module> <module>websocket-tls-basic-auth</module> + <module>concurrency-utils</module> + <module>mvc-cxf</module> </modules> <dependencies>
