├── _config.yml ├── pic ├── pic0-1.jpg ├── pic0-2.jpg ├── pic0-3.jpg ├── pic0-4.jpg ├── pic0-5.jpg ├── pic0-nb.jpg ├── pic0-nbgf.jpg ├── pic375-1.jpg ├── pic375-2.jpg ├── picservlet-1.jpg ├── picservlet-2.jpg ├── pic0-nbgfConfig.jpg ├── pic-configure-rest.jpg ├── pic-jsonb-beanval-run.jpg └── pic-jsonb-beanval-test-resource.jpg ├── demos ├── jsonbbeanvaldemo │ ├── src │ │ └── main │ │ │ ├── webapp │ │ │ ├── js │ │ │ │ └── libs │ │ │ │ │ ├── twitter-bootstrap │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ ├── js │ │ │ │ │ │ ├── npm.js │ │ │ │ │ │ └── bootstrap.min.js │ │ │ │ │ └── css │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ └── bootstrap-theme.css │ │ │ │ │ └── jquery │ │ │ │ │ └── core.js │ │ │ └── index.html │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── jsonbbeanvaldemo │ │ │ ├── config │ │ │ └── ApplicationConfig.java │ │ │ ├── dto │ │ │ └── Customer.java │ │ │ └── service │ │ │ └── CustomerControllerService.java │ ├── pom.xml │ └── nb-configuration.xml └── j1hol-sse-server │ ├── src │ └── main │ │ ├── java │ │ └── br │ │ │ └── com │ │ │ └── improving │ │ │ └── j1hol │ │ │ └── sse │ │ │ └── server │ │ │ ├── PatientHealthInfoApplication.java │ │ │ ├── PatientHealthInfoResource.java │ │ │ ├── PatientHealthInfoEmitter.java │ │ │ └── PatientHealthInfo.java │ │ └── webapp │ │ └── WEB-INF │ │ └── beans.xml │ ├── nb-configuration.xml │ └── pom.xml ├── exercisesolutions ├── hol-jsonb-beanval │ ├── src │ │ └── main │ │ │ ├── webapp │ │ │ └── index.html │ │ │ └── java │ │ │ └── org │ │ │ ├── j1hol │ │ │ ├── CustomerContainer.java │ │ │ ├── Customer.java │ │ │ └── JsonBBeanValPracticeService.java │ │ │ └── netbeans │ │ │ └── rest │ │ │ └── application │ │ │ └── config │ │ │ └── ApplicationConfig.java │ ├── nb-configuration.xml │ └── pom.xml └── j1hol-sse-client │ ├── src │ └── main │ │ ├── java │ │ └── br │ │ │ └── com │ │ │ └── improving │ │ │ └── j1hol │ │ │ └── sse │ │ │ └── client │ │ │ ├── PatientHealthMonitorApplication.java │ │ │ ├── PatientHealthMonitorResource.java │ │ │ ├── PatientHealthInfo.java │ │ │ ├── PatientHealthMonitor.java │ │ │ └── PatientHealthInfoCollector.java │ │ └── webapp │ │ └── WEB-INF │ │ └── beans.xml │ ├── nb-configuration.xml │ └── pom.xml ├── CONTRIBUTING.md ├── ed-http2.md ├── ex-servlet.md ├── LICENSE.txt ├── README.md ├── ex-jsonb-beanval.md └── ex-security.md /_config.yml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - jemoji -------------------------------------------------------------------------------- /pic/pic0-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic0-1.jpg -------------------------------------------------------------------------------- /pic/pic0-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic0-2.jpg -------------------------------------------------------------------------------- /pic/pic0-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic0-3.jpg -------------------------------------------------------------------------------- /pic/pic0-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic0-4.jpg -------------------------------------------------------------------------------- /pic/pic0-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic0-5.jpg -------------------------------------------------------------------------------- /pic/pic0-nb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic0-nb.jpg -------------------------------------------------------------------------------- /pic/pic0-nbgf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic0-nbgf.jpg -------------------------------------------------------------------------------- /pic/pic375-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic375-1.jpg -------------------------------------------------------------------------------- /pic/pic375-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic375-2.jpg -------------------------------------------------------------------------------- /pic/picservlet-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/picservlet-1.jpg -------------------------------------------------------------------------------- /pic/picservlet-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/picservlet-2.jpg -------------------------------------------------------------------------------- /pic/pic0-nbgfConfig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic0-nbgfConfig.jpg -------------------------------------------------------------------------------- /pic/pic-configure-rest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic-configure-rest.jpg -------------------------------------------------------------------------------- /pic/pic-jsonb-beanval-run.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic-jsonb-beanval-run.jpg -------------------------------------------------------------------------------- /pic/pic-jsonb-beanval-test-resource.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/pic/pic-jsonb-beanval-test-resource.jpg -------------------------------------------------------------------------------- /demos/jsonbbeanvaldemo/src/main/webapp/js/libs/twitter-bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/demos/jsonbbeanvaldemo/src/main/webapp/js/libs/twitter-bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /demos/jsonbbeanvaldemo/src/main/webapp/js/libs/twitter-bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/demos/jsonbbeanvaldemo/src/main/webapp/js/libs/twitter-bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /demos/jsonbbeanvaldemo/src/main/webapp/js/libs/twitter-bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/demos/jsonbbeanvaldemo/src/main/webapp/js/libs/twitter-bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /demos/jsonbbeanvaldemo/src/main/webapp/js/libs/twitter-bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javaee/j1-hol/HEAD/demos/jsonbbeanvaldemo/src/main/webapp/js/libs/twitter-bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /exercisesolutions/hol-jsonb-beanval/src/main/webapp/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |