├── .classpath ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs ├── org.eclipse.m2e.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container ├── org.eclipse.wst.jsdt.ui.superType.name └── org.eclipse.wst.validation.prefs ├── README.md ├── pom.xml ├── src └── main │ ├── java │ └── com │ │ └── liugh │ │ ├── annotation │ │ ├── MyController.java │ │ ├── MyRequestMapping.java │ │ └── MyRequestParam.java │ │ ├── core │ │ └── controller │ │ │ └── TestController.java │ │ └── servlet │ │ └── MyDispatcherServlet.java │ ├── resources │ └── application.properties │ └── webapp │ └── WEB-INF │ └── web.xml └── target ├── classes ├── application.properties └── com │ └── liugh │ ├── annotation │ ├── MyController.class │ ├── MyRequestMapping.class │ └── MyRequestParam.class │ ├── core │ └── controller │ │ └── TestController.class │ └── servlet │ └── MyDispatcherServlet.class └── m2e-wtp └── web-resources └── META-INF ├── MANIFEST.MF └── maven └── com.liugh └── liughMVC ├── pom.properties └── pom.xml /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/.settings/org.eclipse.wst.common.project.facet.core.xml -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### [博客地址](https://my.oschina.net/liughDevelop/blog/1622646) -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/liugh/annotation/MyController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/src/main/java/com/liugh/annotation/MyController.java -------------------------------------------------------------------------------- /src/main/java/com/liugh/annotation/MyRequestMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/src/main/java/com/liugh/annotation/MyRequestMapping.java -------------------------------------------------------------------------------- /src/main/java/com/liugh/annotation/MyRequestParam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/src/main/java/com/liugh/annotation/MyRequestParam.java -------------------------------------------------------------------------------- /src/main/java/com/liugh/core/controller/TestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/src/main/java/com/liugh/core/controller/TestController.java -------------------------------------------------------------------------------- /src/main/java/com/liugh/servlet/MyDispatcherServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/src/main/java/com/liugh/servlet/MyDispatcherServlet.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | scanPackage=com.liugh.core -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /target/classes/application.properties: -------------------------------------------------------------------------------- 1 | scanPackage=com.liugh.core -------------------------------------------------------------------------------- /target/classes/com/liugh/annotation/MyController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/target/classes/com/liugh/annotation/MyController.class -------------------------------------------------------------------------------- /target/classes/com/liugh/annotation/MyRequestMapping.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/target/classes/com/liugh/annotation/MyRequestMapping.class -------------------------------------------------------------------------------- /target/classes/com/liugh/annotation/MyRequestParam.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/target/classes/com/liugh/annotation/MyRequestParam.class -------------------------------------------------------------------------------- /target/classes/com/liugh/core/controller/TestController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/target/classes/com/liugh/core/controller/TestController.class -------------------------------------------------------------------------------- /target/classes/com/liugh/servlet/MyDispatcherServlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/target/classes/com/liugh/servlet/MyDispatcherServlet.class -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/target/m2e-wtp/web-resources/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/maven/com.liugh/liughMVC/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/target/m2e-wtp/web-resources/META-INF/maven/com.liugh/liughMVC/pom.properties -------------------------------------------------------------------------------- /target/m2e-wtp/web-resources/META-INF/maven/com.liugh/liughMVC/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qq53182347/liughMVC/HEAD/target/m2e-wtp/web-resources/META-INF/maven/com.liugh/liughMVC/pom.xml --------------------------------------------------------------------------------