├── .DS_Store ├── LICENSE ├── README.md ├── c ├── .DS_Store ├── .vscode │ └── settings.json ├── 1.dll ├── 1.exe ├── 4.c ├── libJniClass.dylib ├── libJniClass.jnilib └── org_apache_jsp_test_jsp_JniClass.h └── test ├── .DS_Store ├── .idea ├── artifacts │ ├── test_war.xml │ ├── test_war_exploded.xml │ └── unnamed.xml ├── compiler.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml └── workspace.xml ├── lib ├── aopalliance-1.0.jar ├── commons-logging-1.2.jar ├── spring-aop-4.3.18.RELEASE.jar ├── spring-aspects-4.3.18.RELEASE.jar ├── spring-beans-4.3.18.RELEASE.jar ├── spring-context-4.3.18.RELEASE.jar ├── spring-context-support-4.3.18.RELEASE.jar ├── spring-core-4.3.18.RELEASE.jar ├── spring-expression-4.3.18.RELEASE.jar ├── spring-instrument-4.3.18.RELEASE.jar ├── spring-instrument-tomcat-4.3.18.RELEASE.jar ├── spring-jdbc-4.3.18.RELEASE.jar ├── spring-jms-4.3.18.RELEASE.jar ├── spring-messaging-4.3.18.RELEASE.jar ├── spring-orm-4.3.18.RELEASE.jar ├── spring-oxm-4.3.18.RELEASE.jar ├── spring-test-4.3.18.RELEASE.jar ├── spring-tx-4.3.18.RELEASE.jar ├── spring-web-4.3.18.RELEASE.jar ├── spring-webmvc-4.3.18.RELEASE.jar ├── spring-webmvc-portlet-4.3.18.RELEASE.jar └── spring-websocket-4.3.18.RELEASE.jar ├── pom.xml ├── src └── main │ └── java │ ├── Test.java │ └── org │ ├── .DS_Store │ └── apache │ ├── .DS_Store │ └── jsp │ └── test_jsp.java ├── target ├── classes │ ├── Test.class │ ├── Test.h │ ├── org │ │ └── apache │ │ │ └── jsp │ │ │ ├── test_jsp$JniClass.class │ │ │ └── test_jsp.class │ ├── org_apache_jsp_test_jsp.h │ └── org_apache_jsp_test_jsp_JniClass.h ├── maven-archiver │ └── pom.properties ├── maven-status │ └── maven-compiler-plugin │ │ ├── compile │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── testCompile │ │ └── default-testCompile │ │ └── inputFiles.lst └── test-1.0-SNAPSHOT.war ├── test.iml └── web ├── META-INF └── MANIFEST.MF ├── WEB-INF ├── applicationContext.xml ├── classes │ ├── Test.class │ └── org │ │ └── apache │ │ └── jsp │ │ ├── test_jsp$JniClass.class │ │ └── test_jsp.class ├── dispatcher-servlet.xml └── web.xml ├── index.jsp └── test.jsp /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/README.md -------------------------------------------------------------------------------- /c/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/c/.DS_Store -------------------------------------------------------------------------------- /c/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/c/.vscode/settings.json -------------------------------------------------------------------------------- /c/1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/c/1.dll -------------------------------------------------------------------------------- /c/1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/c/1.exe -------------------------------------------------------------------------------- /c/4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/c/4.c -------------------------------------------------------------------------------- /c/libJniClass.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/c/libJniClass.dylib -------------------------------------------------------------------------------- /c/libJniClass.jnilib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/c/libJniClass.jnilib -------------------------------------------------------------------------------- /c/org_apache_jsp_test_jsp_JniClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/c/org_apache_jsp_test_jsp_JniClass.h -------------------------------------------------------------------------------- /test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.DS_Store -------------------------------------------------------------------------------- /test/.idea/artifacts/test_war.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.idea/artifacts/test_war.xml -------------------------------------------------------------------------------- /test/.idea/artifacts/test_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.idea/artifacts/test_war_exploded.xml -------------------------------------------------------------------------------- /test/.idea/artifacts/unnamed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.idea/artifacts/unnamed.xml -------------------------------------------------------------------------------- /test/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.idea/compiler.xml -------------------------------------------------------------------------------- /test/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.idea/encodings.xml -------------------------------------------------------------------------------- /test/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.idea/misc.xml -------------------------------------------------------------------------------- /test/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.idea/modules.xml -------------------------------------------------------------------------------- /test/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /test/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/.idea/workspace.xml -------------------------------------------------------------------------------- /test/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /test/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /test/lib/spring-aop-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-aop-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-aspects-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-aspects-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-beans-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-beans-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-context-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-context-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-context-support-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-context-support-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-core-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-core-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-expression-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-expression-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-instrument-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-instrument-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-instrument-tomcat-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-instrument-tomcat-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-jdbc-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-jdbc-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-jms-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-jms-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-messaging-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-messaging-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-orm-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-orm-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-oxm-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-oxm-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-test-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-test-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-tx-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-tx-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-web-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-web-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-webmvc-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-webmvc-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-webmvc-portlet-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-webmvc-portlet-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/lib/spring-websocket-4.3.18.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/lib/spring-websocket-4.3.18.RELEASE.jar -------------------------------------------------------------------------------- /test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/pom.xml -------------------------------------------------------------------------------- /test/src/main/java/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/src/main/java/Test.java -------------------------------------------------------------------------------- /test/src/main/java/org/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/src/main/java/org/.DS_Store -------------------------------------------------------------------------------- /test/src/main/java/org/apache/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/src/main/java/org/apache/.DS_Store -------------------------------------------------------------------------------- /test/src/main/java/org/apache/jsp/test_jsp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/src/main/java/org/apache/jsp/test_jsp.java -------------------------------------------------------------------------------- /test/target/classes/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/target/classes/Test.class -------------------------------------------------------------------------------- /test/target/classes/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/target/classes/Test.h -------------------------------------------------------------------------------- /test/target/classes/org/apache/jsp/test_jsp$JniClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/target/classes/org/apache/jsp/test_jsp$JniClass.class -------------------------------------------------------------------------------- /test/target/classes/org/apache/jsp/test_jsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/target/classes/org/apache/jsp/test_jsp.class -------------------------------------------------------------------------------- /test/target/classes/org_apache_jsp_test_jsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/target/classes/org_apache_jsp_test_jsp.h -------------------------------------------------------------------------------- /test/target/classes/org_apache_jsp_test_jsp_JniClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/target/classes/org_apache_jsp_test_jsp_JniClass.h -------------------------------------------------------------------------------- /test/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | version=1.0-SNAPSHOT 2 | groupId=com 3 | artifactId=test 4 | -------------------------------------------------------------------------------- /test/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | Test.class 2 | -------------------------------------------------------------------------------- /test/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /test/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/target/test-1.0-SNAPSHOT.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/target/test-1.0-SNAPSHOT.war -------------------------------------------------------------------------------- /test/test.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/test.iml -------------------------------------------------------------------------------- /test/web/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/web/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /test/web/WEB-INF/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/web/WEB-INF/applicationContext.xml -------------------------------------------------------------------------------- /test/web/WEB-INF/classes/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/web/WEB-INF/classes/Test.class -------------------------------------------------------------------------------- /test/web/WEB-INF/classes/org/apache/jsp/test_jsp$JniClass.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/web/WEB-INF/classes/org/apache/jsp/test_jsp$JniClass.class -------------------------------------------------------------------------------- /test/web/WEB-INF/classes/org/apache/jsp/test_jsp.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/web/WEB-INF/classes/org/apache/jsp/test_jsp.class -------------------------------------------------------------------------------- /test/web/WEB-INF/dispatcher-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/web/WEB-INF/dispatcher-servlet.xml -------------------------------------------------------------------------------- /test/web/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/web/WEB-INF/web.xml -------------------------------------------------------------------------------- /test/web/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/web/index.jsp -------------------------------------------------------------------------------- /test/web/test.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Draven996/jniwebshell/HEAD/test/web/test.jsp --------------------------------------------------------------------------------