Pages
- Aws page
- cours n° 1 : Comprendre et développer le modèle, la vue et le présenteur d’une application GWT MVP Activity And Place
- Create a trading application in Java
- Developing a Contact Management Application with Angular 1.5X and Java
- Docker posts
- Flask pages
- Github Actions
- Gitlab
- Java development
- Javascript Tips
- Kubernetes
- Liste des Cours et Astuces GWT
- python page
- Spring Boot and Security
- Welcome
Catégories
-
Articles récents
Commentaires récents
- tanmay dans Defining a custom Collector in Java 8
- davidhxxx dans Defining a custom Collector in Java 8
- Tai dans Defining a custom Collector in Java 8
- mahieddine dellabani dans CORS with Spring Boot
- davidhxxx dans CORS with Spring Boot
Archives
- septembre 2024
- avril 2024
- novembre 2023
- août 2023
- juillet 2023
- mai 2023
- avril 2023
- mars 2023
- février 2023
- décembre 2022
- novembre 2022
- octobre 2022
- septembre 2022
- juillet 2022
- juin 2022
- mai 2022
- avril 2022
- mars 2022
- décembre 2021
- juillet 2021
- mars 2021
- février 2021
- janvier 2021
- novembre 2020
- août 2020
- juillet 2020
- juin 2020
- mai 2020
- avril 2020
- mars 2020
- février 2020
- janvier 2020
- décembre 2019
- novembre 2019
- octobre 2019
- septembre 2019
- août 2019
- juin 2019
- mai 2019
- avril 2019
- mars 2019
- décembre 2018
- novembre 2018
- octobre 2018
- juillet 2018
- juin 2018
- février 2018
- décembre 2017
- juillet 2017
- juin 2017
- mai 2017
- avril 2017
- février 2017
- janvier 2017
- décembre 2016
- octobre 2016
- septembre 2016
- août 2016
- juillet 2016
- juin 2016
- mai 2016
- décembre 2015
- novembre 2015
Archives annuelles : 2019
GitLab application
GitLab components Summarize – ngnix : web server in front of the UI application (serve static resources and proxy to unicorn). We could have multiple instances of it : for unicor and for the container registry – unicorn : the … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
Java 1.5+ : Lock API : an alternative to the synchronized keyword
Plan Synchronized keyword limitations Locking on an Object field : the premises of the lock API ReentrantLock : the basic lock ReentrantLock versus synchronized statement benchmark A scenario example where ReentrantLock can help us Synchronized keyword limitations The java.util.concurrent.locks package from … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
network commands
Windows appsresmon.exe Display applications that binds a port Windows netstat -a -b -n -o | findstr 5005 Linux …. List applications Windows tasklist Linux ps -aux Kill an application Windows Taskkill /PID 9424 /F Linux kill …
Publié dans Non classé
Laisser un commentaire
Maven commands
Base Helpful Flags : -am,–also-make If project list is specified, also build projects required by the list -amd,–also-make-dependents If project list is specified, also build projects that depend on projects on the list -B,–batch-mode Run in non-interactive (batch) mode -D,–define … Continuer la lecture
Publié dans Non classé
Laisser un commentaire
Comparator : how to implement it
Plan Model to illustrate Way to never use Way acceptable only for Java 6 and below Favor methods of built-in basic type Comparable implementations in Java 7 Favor Comparator construction methods in Java 8 This post is inspired by the … Continuer la lecture
Publié dans java, java 8
Laisser un commentaire
Defining a custom Collector in Java 8
Plan Reasons to write its own collector The requirement to illustrate : a collect that cannot be done straightly with built-in Stream/Collector methods Implementing it with built-in collectors but without extracted functions is terrible Implementing it with built-in collectors and … Continuer la lecture
Publié dans Non classé
3 commentaires
The builder pattern (not the builder design pattern) in Java
Plan Builder pattern, builder design pattern, fluent API. Are these the same thing ? When do we want to consider the builder pattern? A simple builder The same builder with consistency checks Builder with inheritance Disclaimer : Sure that we … Continuer la lecture
Publié dans Non classé
Laisser un commentaire