└── FruitStore ├── .idea ├── artifacts │ └── hjh_war_exploded.xml ├── copyright │ └── profiles_settings.xml ├── description.html ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── libraries │ ├── Java_EE_6_Java_EE_6.xml │ └── lib.xml ├── misc.xml ├── modules.xml ├── project-template.xml ├── scopes │ └── scope_settings.xml ├── uiDesigner.xml ├── webContexts.xml └── workspace.xml ├── lcy.iml ├── lib ├── javax.annotation.jar ├── javax.ejb.jar ├── javax.jms.jar ├── javax.persistence.jar ├── javax.resource.jar ├── javax.servlet.jar ├── javax.servlet.jsp.jar ├── javax.servlet.jsp.jstl.jar └── javax.transaction.jar ├── out ├── artifacts │ ├── hjh_war_exploded │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ │ ├── classes │ │ │ │ ├── META-INF │ │ │ │ │ └── hjh.kotlin_module │ │ │ │ └── com │ │ │ │ │ ├── dao │ │ │ │ │ ├── ProductDao.class │ │ │ │ │ └── impl │ │ │ │ │ │ └── ProductDaoImpl1.class │ │ │ │ │ ├── domain │ │ │ │ │ └── Product.class │ │ │ │ │ ├── service │ │ │ │ │ ├── ProductService.class │ │ │ │ │ └── impl │ │ │ │ │ │ └── ProductServiceImpl.class │ │ │ │ │ ├── servlet │ │ │ │ │ ├── AddProductServlet.class │ │ │ │ │ ├── DeleteProductServlet.class │ │ │ │ │ ├── FindProductServlet.class │ │ │ │ │ ├── QueryProductServlet.class │ │ │ │ │ ├── ShowAllServlet.class │ │ │ │ │ └── UpdateProductServlet.class │ │ │ │ │ └── utils │ │ │ │ │ └── DbUtil.class │ │ │ ├── lib │ │ │ │ ├── jstl-api-1.2.jar │ │ │ │ ├── jstl-impl-1.2.jar │ │ │ │ ├── mysql-connector-java-8.0.11.jar │ │ │ │ └── standard.jar │ │ │ └── web.xml │ │ ├── addProduct.jsp │ │ ├── fail.jsp │ │ ├── images │ │ │ ├── bg.jpg │ │ │ ├── box-bg.jpg │ │ │ ├── fail.jpg │ │ │ ├── manager-bg.jpg │ │ │ ├── manager-box-bg.jpg │ │ │ ├── register-bg.jpg │ │ │ ├── register-box-bg.jpg │ │ │ ├── showall.jpg │ │ │ └── update.jpg │ │ ├── index.jsp │ │ ├── login.jsp │ │ ├── loginsuccess.jsp │ │ ├── register.jsp │ │ ├── registeredSucceed.jsp │ │ ├── showAll.jsp │ │ ├── success.jsp │ │ └── updateProduct.jsp │ ├── lcy_war_exploded │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ │ ├── classes │ │ │ │ ├── META-INF │ │ │ │ │ └── hjh.kotlin_module │ │ │ │ └── com │ │ │ │ │ ├── dao │ │ │ │ │ ├── ProductDao.class │ │ │ │ │ └── impl │ │ │ │ │ │ └── ProductDaoImpl1.class │ │ │ │ │ ├── domain │ │ │ │ │ └── Product.class │ │ │ │ │ ├── service │ │ │ │ │ ├── ProductService.class │ │ │ │ │ └── impl │ │ │ │ │ │ └── ProductServiceImpl.class │ │ │ │ │ ├── servlet │ │ │ │ │ ├── AddProductServlet.class │ │ │ │ │ ├── DeleteProductServlet.class │ │ │ │ │ ├── FindProductServlet.class │ │ │ │ │ ├── QueryProductServlet.class │ │ │ │ │ ├── ShowAllServlet.class │ │ │ │ │ └── UpdateProductServlet.class │ │ │ │ │ └── utils │ │ │ │ │ └── DbUtil.class │ │ │ ├── lib │ │ │ │ ├── annotations-api.jar │ │ │ │ ├── catalina-ant.jar │ │ │ │ ├── catalina-ha.jar │ │ │ │ ├── catalina-storeconfig.jar │ │ │ │ ├── catalina-tribes.jar │ │ │ │ ├── catalina.jar │ │ │ │ ├── ecj-4.13.jar │ │ │ │ ├── ecj-4.6.3.jar │ │ │ │ ├── el-api.jar │ │ │ │ ├── jasper-el.jar │ │ │ │ ├── jasper.jar │ │ │ │ ├── jaspic-api.jar │ │ │ │ ├── jsp-api.jar │ │ │ │ ├── jstl-api-1.2.jar │ │ │ │ ├── jstl-impl-1.2.jar │ │ │ │ ├── mysql-connector-java-8.0.11.jar │ │ │ │ ├── servlet-api.jar │ │ │ │ ├── standard.jar │ │ │ │ ├── tomcat-api.jar │ │ │ │ ├── tomcat-coyote.jar │ │ │ │ ├── tomcat-dbcp.jar │ │ │ │ ├── tomcat-i18n-cs.jar │ │ │ │ ├── tomcat-i18n-de.jar │ │ │ │ ├── tomcat-i18n-es.jar │ │ │ │ ├── tomcat-i18n-fr.jar │ │ │ │ ├── tomcat-i18n-ja.jar │ │ │ │ ├── tomcat-i18n-ko.jar │ │ │ │ ├── tomcat-i18n-pt-BR.jar │ │ │ │ ├── tomcat-i18n-ru.jar │ │ │ │ ├── tomcat-i18n-zh-CN.jar │ │ │ │ ├── tomcat-jdbc.jar │ │ │ │ ├── tomcat-jni.jar │ │ │ │ ├── tomcat-util-scan.jar │ │ │ │ ├── tomcat-util.jar │ │ │ │ ├── tomcat-websocket.jar │ │ │ │ └── websocket-api.jar │ │ │ └── web.xml │ │ ├── addProduct.jsp │ │ ├── fail.jsp │ │ ├── images │ │ │ ├── bg.jpg │ │ │ ├── box-bg.jpg │ │ │ ├── fail.jpg │ │ │ ├── manager-bg.jpg │ │ │ ├── manager-box-bg.jpg │ │ │ ├── register-bg.jpg │ │ │ ├── register-box-bg.jpg │ │ │ ├── showall.jpg │ │ │ └── update.jpg │ │ ├── index.jsp │ │ ├── login.jsp │ │ ├── loginsuccess.jsp │ │ ├── register.jsp │ │ ├── registeredSucceed.jsp │ │ ├── showAll.jsp │ │ ├── success.jsp │ │ └── updateProduct.jsp │ └── web_war_exploded │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── classes │ │ │ └── com │ │ │ │ ├── dao │ │ │ │ ├── ProductDao.class │ │ │ │ └── impl │ │ │ │ │ └── ProductDaoImpl1.class │ │ │ │ ├── domain │ │ │ │ └── Product.class │ │ │ │ ├── service │ │ │ │ ├── ProductService.class │ │ │ │ └── impl │ │ │ │ │ └── ProductServiceImpl.class │ │ │ │ ├── servlet │ │ │ │ ├── AddProductServlet.class │ │ │ │ ├── DeleteProductServlet.class │ │ │ │ ├── FindProductServlet.class │ │ │ │ ├── QueryProductServlet.class │ │ │ │ ├── ShowAllServlet.class │ │ │ │ └── UpdateProductServlet.class │ │ │ │ └── utils │ │ │ │ └── DbUtil.class │ │ ├── lib │ │ │ ├── annotations-api.jar │ │ │ ├── catalina-ant.jar │ │ │ ├── catalina-ha.jar │ │ │ ├── catalina-storeconfig.jar │ │ │ ├── catalina-tribes.jar │ │ │ ├── catalina.jar │ │ │ ├── ecj-4.6.3.jar │ │ │ ├── el-api.jar │ │ │ ├── jasper-el.jar │ │ │ ├── jasper.jar │ │ │ ├── jaspic-api.jar │ │ │ ├── jsp-api.jar │ │ │ ├── jstl-api-1.2.jar │ │ │ ├── jstl-impl-1.2.jar │ │ │ ├── mysql-connector-java-8.0.11.jar │ │ │ ├── servlet-api.jar │ │ │ ├── tomcat-api.jar │ │ │ ├── tomcat-coyote.jar │ │ │ ├── tomcat-dbcp.jar │ │ │ ├── tomcat-i18n-de.jar │ │ │ ├── tomcat-i18n-es.jar │ │ │ ├── tomcat-i18n-fr.jar │ │ │ ├── tomcat-i18n-ja.jar │ │ │ ├── tomcat-i18n-ko.jar │ │ │ ├── tomcat-i18n-ru.jar │ │ │ ├── tomcat-i18n-zh-CN.jar │ │ │ ├── tomcat-jdbc.jar │ │ │ ├── tomcat-jni.jar │ │ │ ├── tomcat-util-scan.jar │ │ │ ├── tomcat-util.jar │ │ │ ├── tomcat-websocket.jar │ │ │ └── websocket-api.jar │ │ └── web.xml │ │ ├── addProduct.jsp │ │ ├── fail.jsp │ │ ├── index.jsp │ │ ├── showAll.jsp │ │ ├── success.jsp │ │ └── updateProduct.jsp └── production │ └── lcy │ ├── META-INF │ └── hjh.kotlin_module │ └── com │ ├── dao │ ├── ProductDao.class │ └── impl │ │ └── ProductDaoImpl1.class │ ├── domain │ └── Product.class │ ├── service │ ├── ProductService.class │ └── impl │ │ └── ProductServiceImpl.class │ ├── servlet │ ├── AddProductServlet.class │ ├── DeleteProductServlet.class │ ├── FindProductServlet.class │ ├── QueryProductServlet.class │ ├── ShowAllServlet.class │ └── UpdateProductServlet.class │ └── utils │ └── DbUtil.class ├── src └── com │ ├── dao │ ├── ProductDao.java │ └── impl │ │ └── ProductDaoImpl1.java │ ├── domain │ └── Product.java │ ├── service │ ├── ProductService.java │ └── impl │ │ └── ProductServiceImpl.java │ ├── servlet │ ├── AddProductServlet.java │ ├── DeleteProductServlet.java │ ├── FindProductServlet.java │ ├── QueryProductServlet.java │ ├── ShowAllServlet.java │ └── UpdateProductServlet.java │ └── utils │ └── DbUtil.java └── web ├── META-INF └── MANIFEST.MF ├── WEB-INF ├── lib │ ├── jstl-api-1.2.jar │ ├── jstl-impl-1.2.jar │ ├── mysql-connector-java-8.0.11.jar │ └── standard.jar └── web.xml ├── addProduct.jsp ├── fail.jsp ├── images ├── bg.jpg ├── box-bg.jpg ├── fail.jpg ├── manager-bg.jpg ├── manager-box-bg.jpg ├── register-bg.jpg ├── register-box-bg.jpg ├── showall.jpg └── update.jpg ├── index.jsp ├── login.jsp ├── loginsuccess.jsp ├── register.jsp ├── registeredSucceed.jsp ├── showAll.jsp ├── success.jsp └── updateProduct.jsp /FruitStore/.idea/artifacts/hjh_war_exploded.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | $PROJECT_DIR$/out/artifacts/hjh_war_exploded 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /FruitStore/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /FruitStore/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project. -------------------------------------------------------------------------------- /FruitStore/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /FruitStore/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 36 | -------------------------------------------------------------------------------- /FruitStore/.idea/libraries/Java_EE_6_Java_EE_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /FruitStore/.idea/libraries/lib.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /FruitStore/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 16 | 17 | 19 | 20 | 22 | 23 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | Class structure 35 | 36 | 37 | Declaration redundancy 38 | 39 | 40 | Google Web Toolkit issues 41 | 42 | 43 | Inheritance issues 44 | 45 | 46 | Javadoc issues 47 | 48 | 49 | TestNG 50 | 51 | 52 | 53 | 54 | JavaDoc 55 | 56 | 57 | 58 | 59 | 60 | 61 | 63 | 64 | 65 | 66 | 67 | 100 | 101 | 104 | 105 | 106 | 107 | 108 | dom4jrrrrr 109 | 110 | 115 | 116 | 117 | 118 | 119 | 120 | 1.6 121 | 122 | 127 | 128 | 129 | 130 | 131 | 132 | 1.6 133 | 134 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 150 | 151 | 152 | 153 | 154 | 155 | -------------------------------------------------------------------------------- /FruitStore/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FruitStore/.idea/project-template.xml: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /FruitStore/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /FruitStore/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /FruitStore/.idea/webContexts.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /FruitStore/.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 38 | 39 | 45 | 46 | 47 | 48 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 157 | 158 | 229 | 230 | 231 | 232 | 233 | 234 | 235 |