├── .idea ├── .name ├── artifacts │ ├── struts2_rest_showcase_war.xml │ └── struts2_rest_showcase_war_exploded.xml ├── compiler.xml ├── encodings.xml ├── libraries │ ├── Maven__asm_asm_3_3.xml │ ├── Maven__asm_asm_commons_3_3.xml │ ├── Maven__asm_asm_tree_3_3.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_annotations_2_6_0.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_core_2_6_1.xml │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_6_1.xml │ ├── Maven__com_thoughtworks_xstream_xstream_1_4_8.xml │ ├── Maven__commons_beanutils_commons_beanutils_1_9_2.xml │ ├── Maven__commons_codec_commons_codec_1_2.xml │ ├── Maven__commons_collections_commons_collections_3_1.xml │ ├── Maven__commons_fileupload_commons_fileupload_1_3_1.xml │ ├── Maven__commons_httpclient_commons_httpclient_3_1.xml │ ├── Maven__commons_io_commons_io_2_4.xml │ ├── Maven__commons_lang_commons_lang_2_4.xml │ ├── Maven__commons_logging_commons_logging_1_1_3.xml │ ├── Maven__dom4j_dom4j_1_6_1.xml │ ├── Maven__htmlunit_htmlunit_1_11.xml │ ├── Maven__javax_servlet_servlet_api_2_4.xml │ ├── Maven__jaxen_jaxen_1_1.xml │ ├── Maven__jdom_jdom_1_0.xml │ ├── Maven__junit_junit_4_12.xml │ ├── Maven__nekohtml_nekohtml_0_9_5.xml │ ├── Maven__net_sf_ezmorph_ezmorph_1_0_6.xml │ ├── Maven__net_sf_json_lib_json_lib_jdk15_2_3.xml │ ├── Maven__net_sourceforge_jwebunit_jwebunit_core_1_4_1.xml │ ├── Maven__net_sourceforge_jwebunit_jwebunit_htmlunit_plugin_1_4_1.xml │ ├── Maven__ognl_ognl_3_1_4.xml │ ├── Maven__org_apache_commons_commons_lang3_3_4.xml │ ├── Maven__org_apache_logging_log4j_log4j_api_2_5.xml │ ├── Maven__org_apache_logging_log4j_log4j_core_2_5.xml │ ├── Maven__org_apache_struts_struts2_config_browser_plugin_2_5.xml │ ├── Maven__org_apache_struts_struts2_convention_plugin_2_5.xml │ ├── Maven__org_apache_struts_struts2_core_2_5.xml │ ├── Maven__org_apache_struts_struts2_rest_plugin_2_5.xml │ ├── Maven__org_freemarker_freemarker_2_3_23.xml │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ ├── Maven__org_javassist_javassist_3_20_0_GA.xml │ ├── Maven__org_springframework_spring_core_4_1_6_RELEASE.xml │ ├── Maven__org_springframework_spring_test_4_1_6_RELEASE.xml │ ├── Maven__regexp_regexp_1_3.xml │ ├── Maven__rhino_js_1_6R5.xml │ ├── Maven__xerces_xercesImpl_2_10_0.xml │ ├── Maven__xerces_xmlParserAPIs_2_6_2.xml │ ├── Maven__xml_apis_xml_apis_1_3_02.xml │ ├── Maven__xmlpull_xmlpull_1_1_3_1.xml │ └── Maven__xpp3_xpp3_min_1_1_4c.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── README.md ├── pom.xml ├── src ├── main │ ├── java │ │ └── org │ │ │ └── demo │ │ │ └── rest │ │ │ └── example │ │ │ ├── IndexController.java │ │ │ ├── Order.java │ │ │ ├── OrdersController.java │ │ │ └── OrdersService.java │ ├── resources │ │ ├── log4j2.xml │ │ ├── struts.xml │ │ └── velocity.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── content │ │ │ ├── orders-deleteConfirm.jsp │ │ │ ├── orders-edit.jsp │ │ │ ├── orders-editNew.jsp │ │ │ ├── orders-index.jsp │ │ │ └── orders-show.jsp │ │ └── web.xml │ │ ├── css │ │ ├── app.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 └── test │ └── java │ └── it │ └── org │ └── apache │ └── struts2 │ └── rest │ └── example │ ├── GetOrdersTest.java │ ├── ListOrdersTest.java │ ├── ParameterUtils.java │ └── PostOrderTest.java ├── struts2-rest-showcase.iml └── target ├── .plxarc ├── antrun └── build-main.xml ├── classes ├── log4j2.xml ├── org │ └── demo │ │ └── rest │ │ └── example │ │ ├── IndexController.class │ │ ├── Order.class │ │ ├── OrdersController.class │ │ └── OrdersService.class ├── struts.xml └── velocity.properties ├── maven-archiver └── pom.properties ├── maven-shared-archive-resources └── META-INF │ ├── DEPENDENCIES │ ├── LICENSE │ └── NOTICE ├── maven-status └── maven-compiler-plugin │ ├── compile │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── testCompile │ └── default-testCompile │ ├── createdFiles.lst │ └── inputFiles.lst ├── struts2-rest-showcase-sources.jar ├── struts2-rest-showcase.war ├── struts2-rest-showcase ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── classes │ │ ├── META-INF │ │ │ ├── DEPENDENCIES │ │ │ ├── LICENSE │ │ │ └── NOTICE │ │ ├── log4j2.xml │ │ ├── org │ │ │ └── demo │ │ │ │ └── rest │ │ │ │ └── example │ │ │ │ ├── IndexController.class │ │ │ │ ├── Order.class │ │ │ │ ├── OrdersController.class │ │ │ │ └── OrdersService.class │ │ ├── struts.xml │ │ └── velocity.properties │ ├── content │ │ ├── orders-deleteConfirm.jsp │ │ ├── orders-edit.jsp │ │ ├── orders-editNew.jsp │ │ ├── orders-index.jsp │ │ └── orders-show.jsp │ ├── lib │ │ ├── asm-3.3.jar │ │ ├── asm-commons-3.3.jar │ │ ├── asm-tree-3.3.jar │ │ ├── commons-beanutils-1.9.2.jar │ │ ├── commons-collections-3.1.jar │ │ ├── commons-fileupload-1.3.1.jar │ │ ├── commons-io-2.4.jar │ │ ├── commons-lang-2.4.jar │ │ ├── commons-lang3-3.4.jar │ │ ├── commons-logging-1.1.3.jar │ │ ├── ezmorph-1.0.6.jar │ │ ├── freemarker-2.3.23.jar │ │ ├── jackson-annotations-2.6.0.jar │ │ ├── jackson-core-2.6.1.jar │ │ ├── jackson-databind-2.6.1.jar │ │ ├── javassist-3.20.0-GA.jar │ │ ├── json-lib-2.3-jdk15.jar │ │ ├── log4j-api-2.5.jar │ │ ├── log4j-core-2.5.jar │ │ ├── ognl-3.1.4.jar │ │ ├── struts2-config-browser-plugin-2.5.jar │ │ ├── struts2-convention-plugin-2.5.jar │ │ ├── struts2-core-2.5.jar │ │ ├── struts2-rest-plugin-2.5.jar │ │ ├── xmlpull-1.1.3.1.jar │ │ ├── xpp3_min-1.1.4c.jar │ │ └── xstream-1.4.8.jar │ ├── src │ │ └── java │ │ │ ├── log4j2.xml │ │ │ ├── org │ │ │ └── demo │ │ │ │ └── rest │ │ │ │ └── example │ │ │ │ ├── IndexController.java │ │ │ │ ├── Order.java │ │ │ │ ├── OrdersController.java │ │ │ │ └── OrdersService.java │ │ │ ├── struts.xml │ │ │ └── velocity.properties │ └── web.xml ├── css │ ├── app.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── test-classes └── it └── org └── apache └── struts2 └── rest └── example ├── GetOrdersTest.class ├── ListOrdersTest.class ├── ParameterUtils.class └── PostOrderTest.class /.idea/.name: -------------------------------------------------------------------------------- 1 | struts2-rest-showcase -------------------------------------------------------------------------------- /.idea/artifacts/struts2_rest_showcase_war.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/artifacts/struts2_rest_showcase_war.xml -------------------------------------------------------------------------------- /.idea/artifacts/struts2_rest_showcase_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/artifacts/struts2_rest_showcase_war_exploded.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__asm_asm_3_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__asm_asm_3_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__asm_asm_commons_3_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__asm_asm_commons_3_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__asm_asm_tree_3_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__asm_asm_tree_3_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_6_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_6_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_6_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_6_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__com_thoughtworks_xstream_xstream_1_4_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__com_thoughtworks_xstream_xstream_1_4_8.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_beanutils_commons_beanutils_1_9_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__commons_beanutils_commons_beanutils_1_9_2.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_codec_commons_codec_1_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__commons_codec_commons_codec_1_2.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_collections_commons_collections_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__commons_collections_commons_collections_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_fileupload_commons_fileupload_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__commons_fileupload_commons_fileupload_1_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_httpclient_commons_httpclient_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__commons_httpclient_commons_httpclient_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_io_commons_io_2_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__commons_io_commons_io_2_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_lang_commons_lang_2_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__commons_lang_commons_lang_2_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__commons_logging_commons_logging_1_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__commons_logging_commons_logging_1_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__dom4j_dom4j_1_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__dom4j_dom4j_1_6_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__htmlunit_htmlunit_1_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__htmlunit_htmlunit_1_11.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__javax_servlet_servlet_api_2_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__javax_servlet_servlet_api_2_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__jaxen_jaxen_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__jaxen_jaxen_1_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__jdom_jdom_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__jdom_jdom_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__junit_junit_4_12.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__nekohtml_nekohtml_0_9_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__nekohtml_nekohtml_0_9_5.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sf_ezmorph_ezmorph_1_0_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__net_sf_ezmorph_ezmorph_1_0_6.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sf_json_lib_json_lib_jdk15_2_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__net_sf_json_lib_json_lib_jdk15_2_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sourceforge_jwebunit_jwebunit_core_1_4_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__net_sourceforge_jwebunit_jwebunit_core_1_4_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__net_sourceforge_jwebunit_jwebunit_htmlunit_plugin_1_4_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__net_sourceforge_jwebunit_jwebunit_htmlunit_plugin_1_4_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__ognl_ognl_3_1_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__ognl_ognl_3_1_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_commons_commons_lang3_3_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_4.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_5.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_logging_log4j_log4j_core_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_apache_logging_log4j_log4j_core_2_5.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_struts_struts2_config_browser_plugin_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_apache_struts_struts2_config_browser_plugin_2_5.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_struts_struts2_convention_plugin_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_apache_struts_struts2_convention_plugin_2_5.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_struts_struts2_core_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_apache_struts_struts2_core_2_5.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_apache_struts_struts2_rest_plugin_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_apache_struts_struts2_rest_plugin_2_5.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_freemarker_freemarker_2_3_23.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_freemarker_freemarker_2_3_23.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_javassist_javassist_3_20_0_GA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_javassist_javassist_3_20_0_GA.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_core_4_1_6_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_springframework_spring_core_4_1_6_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__org_springframework_spring_test_4_1_6_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__org_springframework_spring_test_4_1_6_RELEASE.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__regexp_regexp_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__regexp_regexp_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__rhino_js_1_6R5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__rhino_js_1_6R5.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__xerces_xercesImpl_2_10_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__xerces_xercesImpl_2_10_0.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__xerces_xmlParserAPIs_2_6_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__xerces_xmlParserAPIs_2_6_2.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__xml_apis_xml_apis_1_3_02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__xml_apis_xml_apis_1_3_02.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__xmlpull_xmlpull_1_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__xmlpull_xmlpull_1_1_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/Maven__xpp3_xpp3_min_1_1_4c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/libraries/Maven__xpp3_xpp3_min_1_1_4c.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | S2-055-PoC 基于rest-show-case改造 2 | -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/org/demo/rest/example/IndexController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/java/org/demo/rest/example/IndexController.java -------------------------------------------------------------------------------- /src/main/java/org/demo/rest/example/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/java/org/demo/rest/example/Order.java -------------------------------------------------------------------------------- /src/main/java/org/demo/rest/example/OrdersController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/java/org/demo/rest/example/OrdersController.java -------------------------------------------------------------------------------- /src/main/java/org/demo/rest/example/OrdersService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/java/org/demo/rest/example/OrdersService.java -------------------------------------------------------------------------------- /src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /src/main/resources/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/resources/struts.xml -------------------------------------------------------------------------------- /src/main/resources/velocity.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/resources/velocity.properties -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/content/orders-deleteConfirm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/WEB-INF/content/orders-deleteConfirm.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/content/orders-edit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/WEB-INF/content/orders-edit.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/content/orders-editNew.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/WEB-INF/content/orders-editNew.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/content/orders-index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/WEB-INF/content/orders-index.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/content/orders-show.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/WEB-INF/content/orders-show.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/css/app.css -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/test/java/it/org/apache/struts2/rest/example/GetOrdersTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/test/java/it/org/apache/struts2/rest/example/GetOrdersTest.java -------------------------------------------------------------------------------- /src/test/java/it/org/apache/struts2/rest/example/ListOrdersTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/test/java/it/org/apache/struts2/rest/example/ListOrdersTest.java -------------------------------------------------------------------------------- /src/test/java/it/org/apache/struts2/rest/example/ParameterUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/test/java/it/org/apache/struts2/rest/example/ParameterUtils.java -------------------------------------------------------------------------------- /src/test/java/it/org/apache/struts2/rest/example/PostOrderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/src/test/java/it/org/apache/struts2/rest/example/PostOrderTest.java -------------------------------------------------------------------------------- /struts2-rest-showcase.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/struts2-rest-showcase.iml -------------------------------------------------------------------------------- /target/.plxarc: -------------------------------------------------------------------------------- 1 | maven-shared-archive-resources -------------------------------------------------------------------------------- /target/antrun/build-main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/antrun/build-main.xml -------------------------------------------------------------------------------- /target/classes/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/classes/log4j2.xml -------------------------------------------------------------------------------- /target/classes/org/demo/rest/example/IndexController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/classes/org/demo/rest/example/IndexController.class -------------------------------------------------------------------------------- /target/classes/org/demo/rest/example/Order.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/classes/org/demo/rest/example/Order.class -------------------------------------------------------------------------------- /target/classes/org/demo/rest/example/OrdersController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/classes/org/demo/rest/example/OrdersController.class -------------------------------------------------------------------------------- /target/classes/org/demo/rest/example/OrdersService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/classes/org/demo/rest/example/OrdersService.class -------------------------------------------------------------------------------- /target/classes/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/classes/struts.xml -------------------------------------------------------------------------------- /target/classes/velocity.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/classes/velocity.properties -------------------------------------------------------------------------------- /target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/maven-archiver/pom.properties -------------------------------------------------------------------------------- /target/maven-shared-archive-resources/META-INF/DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/maven-shared-archive-resources/META-INF/DEPENDENCIES -------------------------------------------------------------------------------- /target/maven-shared-archive-resources/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/maven-shared-archive-resources/META-INF/LICENSE -------------------------------------------------------------------------------- /target/maven-shared-archive-resources/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/maven-shared-archive-resources/META-INF/NOTICE -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /target/struts2-rest-showcase-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase-sources.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase.war -------------------------------------------------------------------------------- /target/struts2-rest-showcase/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/META-INF/DEPENDENCIES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/META-INF/DEPENDENCIES -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/META-INF/LICENSE -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/META-INF/NOTICE -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/log4j2.xml -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/org/demo/rest/example/IndexController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/org/demo/rest/example/IndexController.class -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/org/demo/rest/example/Order.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/org/demo/rest/example/Order.class -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/org/demo/rest/example/OrdersController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/org/demo/rest/example/OrdersController.class -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/org/demo/rest/example/OrdersService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/org/demo/rest/example/OrdersService.class -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/struts.xml -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/classes/velocity.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/classes/velocity.properties -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/content/orders-deleteConfirm.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/content/orders-deleteConfirm.jsp -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/content/orders-edit.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/content/orders-edit.jsp -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/content/orders-editNew.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/content/orders-editNew.jsp -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/content/orders-index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/content/orders-index.jsp -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/content/orders-show.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/content/orders-show.jsp -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/asm-3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/asm-3.3.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/asm-commons-3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/asm-commons-3.3.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/asm-tree-3.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/asm-tree-3.3.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/commons-beanutils-1.9.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/commons-beanutils-1.9.2.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/commons-collections-3.1.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/commons-fileupload-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/commons-fileupload-1.3.1.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/commons-lang-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/commons-lang-2.4.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/commons-lang3-3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/commons-lang3-3.4.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/commons-logging-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/commons-logging-1.1.3.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/ezmorph-1.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/ezmorph-1.0.6.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/freemarker-2.3.23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/freemarker-2.3.23.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/jackson-annotations-2.6.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/jackson-annotations-2.6.0.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/jackson-core-2.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/jackson-core-2.6.1.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/jackson-databind-2.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/jackson-databind-2.6.1.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/javassist-3.20.0-GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/javassist-3.20.0-GA.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/json-lib-2.3-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/json-lib-2.3-jdk15.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/log4j-api-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/log4j-api-2.5.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/log4j-core-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/log4j-core-2.5.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/ognl-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/ognl-3.1.4.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/struts2-config-browser-plugin-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/struts2-config-browser-plugin-2.5.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/struts2-convention-plugin-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/struts2-convention-plugin-2.5.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/struts2-core-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/struts2-core-2.5.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/struts2-rest-plugin-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/struts2-rest-plugin-2.5.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/xmlpull-1.1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/xmlpull-1.1.3.1.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/xpp3_min-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/xpp3_min-1.1.4c.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/lib/xstream-1.4.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/lib/xstream-1.4.8.jar -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/src/java/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/src/java/log4j2.xml -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/src/java/org/demo/rest/example/IndexController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/src/java/org/demo/rest/example/IndexController.java -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/src/java/org/demo/rest/example/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/src/java/org/demo/rest/example/Order.java -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/src/java/org/demo/rest/example/OrdersController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/src/java/org/demo/rest/example/OrdersController.java -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/src/java/org/demo/rest/example/OrdersService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/src/java/org/demo/rest/example/OrdersService.java -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/src/java/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/src/java/struts.xml -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/src/java/velocity.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/src/java/velocity.properties -------------------------------------------------------------------------------- /target/struts2-rest-showcase/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/WEB-INF/web.xml -------------------------------------------------------------------------------- /target/struts2-rest-showcase/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/css/app.css -------------------------------------------------------------------------------- /target/struts2-rest-showcase/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/css/bootstrap-theme.css -------------------------------------------------------------------------------- /target/struts2-rest-showcase/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /target/struts2-rest-showcase/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /target/struts2-rest-showcase/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/css/bootstrap.css -------------------------------------------------------------------------------- /target/struts2-rest-showcase/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/css/bootstrap.css.map -------------------------------------------------------------------------------- /target/struts2-rest-showcase/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/css/bootstrap.min.css -------------------------------------------------------------------------------- /target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/struts2-rest-showcase/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /target/test-classes/it/org/apache/struts2/rest/example/GetOrdersTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/test-classes/it/org/apache/struts2/rest/example/GetOrdersTest.class -------------------------------------------------------------------------------- /target/test-classes/it/org/apache/struts2/rest/example/ListOrdersTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/test-classes/it/org/apache/struts2/rest/example/ListOrdersTest.class -------------------------------------------------------------------------------- /target/test-classes/it/org/apache/struts2/rest/example/ParameterUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/test-classes/it/org/apache/struts2/rest/example/ParameterUtils.class -------------------------------------------------------------------------------- /target/test-classes/it/org/apache/struts2/rest/example/PostOrderTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shengqi158/S2-055-PoC/HEAD/target/test-classes/it/org/apache/struts2/rest/example/PostOrderTest.class --------------------------------------------------------------------------------