├── .gitignore ├── LICENSE ├── README.md ├── jsp-common ├── pom.xml └── src │ └── main │ └── resources │ └── META-INF │ └── resources │ └── jsp │ └── hello-from-common.jsp ├── jsp-start ├── pom.xml └── src │ └── main │ ├── java │ └── io │ │ └── github │ │ └── hengyunabc │ │ └── sample │ │ ├── Application.java │ │ ├── MainController.java │ │ ├── StaticResourceConfigurer.java │ │ └── TomcatConfiguration.java │ └── resources │ ├── META-INF │ └── resources │ │ └── jsp │ │ ├── hello.jsp │ │ └── home.jsp │ └── application.properties └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/README.md -------------------------------------------------------------------------------- /jsp-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-common/pom.xml -------------------------------------------------------------------------------- /jsp-common/src/main/resources/META-INF/resources/jsp/hello-from-common.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-common/src/main/resources/META-INF/resources/jsp/hello-from-common.jsp -------------------------------------------------------------------------------- /jsp-start/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-start/pom.xml -------------------------------------------------------------------------------- /jsp-start/src/main/java/io/github/hengyunabc/sample/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-start/src/main/java/io/github/hengyunabc/sample/Application.java -------------------------------------------------------------------------------- /jsp-start/src/main/java/io/github/hengyunabc/sample/MainController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-start/src/main/java/io/github/hengyunabc/sample/MainController.java -------------------------------------------------------------------------------- /jsp-start/src/main/java/io/github/hengyunabc/sample/StaticResourceConfigurer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-start/src/main/java/io/github/hengyunabc/sample/StaticResourceConfigurer.java -------------------------------------------------------------------------------- /jsp-start/src/main/java/io/github/hengyunabc/sample/TomcatConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-start/src/main/java/io/github/hengyunabc/sample/TomcatConfiguration.java -------------------------------------------------------------------------------- /jsp-start/src/main/resources/META-INF/resources/jsp/hello.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-start/src/main/resources/META-INF/resources/jsp/hello.jsp -------------------------------------------------------------------------------- /jsp-start/src/main/resources/META-INF/resources/jsp/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-start/src/main/resources/META-INF/resources/jsp/home.jsp -------------------------------------------------------------------------------- /jsp-start/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/jsp-start/src/main/resources/application.properties -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengyunabc/spring-boot-fat-jar-jsp-sample/HEAD/pom.xml --------------------------------------------------------------------------------