To configure your own DataSource for SpringBoot, with fully automatic initialization, semi-auto or static configuration. With various properties or a JNDI.
spring
JavaEE AngularJS Bootstrap: How to Infinite-Scroll
A simple infinite scroll like Twitter or Facebook’s timelines. You’ll never reach the footer!
Continue reading
JavaEE AngularJS Bootstrap: How to Sort with Smart-Table
Here is a sortable data-table. Using Twitter Bootstrap, ng-module SmartTable for front-end. And Spring-Data, Jersey JAXRS for backend. Continue reading
JavaEE AngularJS Bootstrap: How to Pagination with Smart-Table
A paginated data-table with a back-end inspired by Spring-Data Repository pattern implementation and front-end using Bootstrap pagination and ng-module Smart-Table.
Continue reading
Comment utiliser BeanValidation manuellement hors d’un serveur JavaEE ?
Ce tuto décrit comment valider un modèle de données manuellement avec JavaEE BeanValidation (JSR 303). L’intérêt ? Eviter une pile de <If> inmaintenable dans le code quand on n’a pas accès à l’annotation @Valid (pas de server JavaEE, un Tomcat par exemple). Ce point étant couvert par la spécification mais rarement décrit. Les exceptions et les messages d’erreurs seront également abordés.