├── LICENSE ├── README.md └── src └── main ├── java └── com │ └── mkyong │ └── helloworld │ ├── service │ └── HelloWorldService.java │ └── web │ └── WelcomeController.java ├── resources └── logback.xml └── webapp ├── WEB-INF ├── spring-core-config.xml ├── spring-mvc-config.xml ├── views │ └── jsp │ │ └── index.jsp └── web.xml └── resources └── core ├── css ├── bootstrap.min.css └── hello.css └── js ├── bootstrap.min.js └── hello.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/README.md -------------------------------------------------------------------------------- /src/main/java/com/mkyong/helloworld/service/HelloWorldService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/src/main/java/com/mkyong/helloworld/service/HelloWorldService.java -------------------------------------------------------------------------------- /src/main/java/com/mkyong/helloworld/web/WelcomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/src/main/java/com/mkyong/helloworld/web/WelcomeController.java -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/spring-core-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/src/main/webapp/WEB-INF/spring-core-config.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/spring-mvc-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/src/main/webapp/WEB-INF/spring-mvc-config.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/jsp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/src/main/webapp/WEB-INF/views/jsp/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/resources/core/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/src/main/webapp/resources/core/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/resources/core/css/hello.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/webapp/resources/core/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkyong/spring4-mvc-gradle-xml-hello-world/HEAD/src/main/webapp/resources/core/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/webapp/resources/core/js/hello.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------