├── .gitignore ├── README.md ├── clustering-domain-mode.txt └── load-balancing-demo ├── pom.xml └── src └── main ├── java └── io │ └── undertow │ └── clusteringdemo │ └── SimpleServlet.java └── webapp └── WEB-INF └── web.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | target 3 | *.iml 4 | *~ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartwdouglas/modcluster-example/HEAD/README.md -------------------------------------------------------------------------------- /clustering-domain-mode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartwdouglas/modcluster-example/HEAD/clustering-domain-mode.txt -------------------------------------------------------------------------------- /load-balancing-demo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartwdouglas/modcluster-example/HEAD/load-balancing-demo/pom.xml -------------------------------------------------------------------------------- /load-balancing-demo/src/main/java/io/undertow/clusteringdemo/SimpleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartwdouglas/modcluster-example/HEAD/load-balancing-demo/src/main/java/io/undertow/clusteringdemo/SimpleServlet.java -------------------------------------------------------------------------------- /load-balancing-demo/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stuartwdouglas/modcluster-example/HEAD/load-balancing-demo/src/main/webapp/WEB-INF/web.xml --------------------------------------------------------------------------------