├── .gitignore ├── 01-HelloWorld.rst ├── 02-OpenCV.rst ├── 03-FaceConverterService.rst ├── 04-JMS.rst ├── 05-AsyncFaceConverter.rst ├── 06-STOMP.rst ├── 07-STOMPOverWebSocket.rst ├── 08-WebRTC.rst ├── 09-WebRTCFaceConverter.rst ├── 10-Docker.rst ├── 11-DockerFaceConverter.rst ├── CodingStandard.rst ├── Makefile ├── conf.py ├── images ├── camera-html-01.png ├── camera-html-02.png ├── duke.png ├── face-html-01.png ├── face-html-02.png ├── half.png ├── hello-html-01.png ├── hello-html-02.png ├── jms-receive.png ├── jms-send.png ├── logo.png ├── stomp-message-flow.png └── system.png ├── index.rst └── make.bat /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | .idea 3 | *.iml -------------------------------------------------------------------------------- /01-HelloWorld.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/01-HelloWorld.rst -------------------------------------------------------------------------------- /02-OpenCV.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/02-OpenCV.rst -------------------------------------------------------------------------------- /03-FaceConverterService.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/03-FaceConverterService.rst -------------------------------------------------------------------------------- /04-JMS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/04-JMS.rst -------------------------------------------------------------------------------- /05-AsyncFaceConverter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/05-AsyncFaceConverter.rst -------------------------------------------------------------------------------- /06-STOMP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/06-STOMP.rst -------------------------------------------------------------------------------- /07-STOMPOverWebSocket.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/07-STOMPOverWebSocket.rst -------------------------------------------------------------------------------- /08-WebRTC.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/08-WebRTC.rst -------------------------------------------------------------------------------- /09-WebRTCFaceConverter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/09-WebRTCFaceConverter.rst -------------------------------------------------------------------------------- /10-Docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/10-Docker.rst -------------------------------------------------------------------------------- /11-DockerFaceConverter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/11-DockerFaceConverter.rst -------------------------------------------------------------------------------- /CodingStandard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/CodingStandard.rst -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/Makefile -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/conf.py -------------------------------------------------------------------------------- /images/camera-html-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/camera-html-01.png -------------------------------------------------------------------------------- /images/camera-html-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/camera-html-02.png -------------------------------------------------------------------------------- /images/duke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/duke.png -------------------------------------------------------------------------------- /images/face-html-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/face-html-01.png -------------------------------------------------------------------------------- /images/face-html-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/face-html-02.png -------------------------------------------------------------------------------- /images/half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/half.png -------------------------------------------------------------------------------- /images/hello-html-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/hello-html-01.png -------------------------------------------------------------------------------- /images/hello-html-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/hello-html-02.png -------------------------------------------------------------------------------- /images/jms-receive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/jms-receive.png -------------------------------------------------------------------------------- /images/jms-send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/jms-send.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/stomp-message-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/stomp-message-flow.png -------------------------------------------------------------------------------- /images/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/images/system.png -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/index.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/making/spring-boot-camp-instruction/HEAD/make.bat --------------------------------------------------------------------------------