├── .gitignore ├── LICENSE.txt ├── README.md ├── frontend ├── App.js ├── main.js └── product │ ├── ProductFilter.js │ ├── ProductList.js │ └── productList.css ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── package.json ├── src ├── main │ ├── java │ │ └── de │ │ │ └── synyx │ │ │ └── tutorials │ │ │ └── spring │ │ │ └── reactjs │ │ │ └── demo │ │ │ ├── Functions.java │ │ │ ├── SpringReactjsDemoApplication.java │ │ │ ├── product │ │ │ ├── Product.java │ │ │ ├── ProductController.java │ │ │ └── ProductRepository.java │ │ │ └── react │ │ │ └── React.java │ └── resources │ │ ├── application.properties │ │ ├── static │ │ └── nashorn-polyfill.js │ │ └── templates │ │ └── index.html └── test │ └── java │ └── de │ └── synyx │ └── tutorials │ └── spring │ └── reactjs │ └── demo │ └── SpringReactjsDemoApplicationTests.java └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/README.md -------------------------------------------------------------------------------- /frontend/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/frontend/App.js -------------------------------------------------------------------------------- /frontend/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/frontend/main.js -------------------------------------------------------------------------------- /frontend/product/ProductFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/frontend/product/ProductFilter.js -------------------------------------------------------------------------------- /frontend/product/ProductList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/frontend/product/ProductList.js -------------------------------------------------------------------------------- /frontend/product/productList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/frontend/product/productList.css -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/package.json -------------------------------------------------------------------------------- /src/main/java/de/synyx/tutorials/spring/reactjs/demo/Functions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/src/main/java/de/synyx/tutorials/spring/reactjs/demo/Functions.java -------------------------------------------------------------------------------- /src/main/java/de/synyx/tutorials/spring/reactjs/demo/SpringReactjsDemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/src/main/java/de/synyx/tutorials/spring/reactjs/demo/SpringReactjsDemoApplication.java -------------------------------------------------------------------------------- /src/main/java/de/synyx/tutorials/spring/reactjs/demo/product/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/src/main/java/de/synyx/tutorials/spring/reactjs/demo/product/Product.java -------------------------------------------------------------------------------- /src/main/java/de/synyx/tutorials/spring/reactjs/demo/product/ProductController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/src/main/java/de/synyx/tutorials/spring/reactjs/demo/product/ProductController.java -------------------------------------------------------------------------------- /src/main/java/de/synyx/tutorials/spring/reactjs/demo/product/ProductRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/src/main/java/de/synyx/tutorials/spring/reactjs/demo/product/ProductRepository.java -------------------------------------------------------------------------------- /src/main/java/de/synyx/tutorials/spring/reactjs/demo/react/React.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/src/main/java/de/synyx/tutorials/spring/reactjs/demo/react/React.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | spring.thymeleaf.cache=false 2 | -------------------------------------------------------------------------------- /src/main/resources/static/nashorn-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/src/main/resources/static/nashorn-polyfill.js -------------------------------------------------------------------------------- /src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /src/test/java/de/synyx/tutorials/spring/reactjs/demo/SpringReactjsDemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/src/test/java/de/synyx/tutorials/spring/reactjs/demo/SpringReactjsDemoApplicationTests.java -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synyx/springboot-reactjs-demo/HEAD/webpack.config.js --------------------------------------------------------------------------------