├── .project ├── .settings ├── org.eclipse.core.resources.prefs └── org.eclipse.m2e.core.prefs ├── LICENSE ├── chengjingwen-shopping-api ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.m2e.core.prefs ├── chengjingwen-shopping-commodity-api │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── chengjingwen │ │ │ ├── api │ │ │ └── service │ │ │ │ ├── ItemDescService.java │ │ │ │ └── ItemService.java │ │ │ └── entity │ │ │ ├── ItemCatEntity.java │ │ │ ├── ItemDescEntity.java │ │ │ ├── ItemEntity.java │ │ │ └── TestEntity.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ └── com │ │ └── chengjingwen │ │ ├── api │ │ └── service │ │ │ ├── ItemDescService.class │ │ │ └── ItemService.class │ │ └── entity │ │ ├── ItemCatEntity.class │ │ ├── ItemDescEntity.class │ │ ├── ItemEntity.class │ │ └── TestEntity.class ├── chengjingwen-shopping-member-api │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── chengjingwen │ │ │ ├── api │ │ │ └── service │ │ │ │ ├── DemoApiService.java │ │ │ │ └── UserService.java │ │ │ └── entity │ │ │ └── UserEntity.java │ └── target │ │ └── classes │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ └── com │ │ └── chengjingwen │ │ ├── api │ │ └── service │ │ │ ├── DemoApiService.class │ │ │ └── UserService.class │ │ └── entity │ │ └── UserEntity.class ├── chengjingwen-shopping-pay-api │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.m2e.core.prefs │ │ └── org.eclipse.wst.common.project.facet.core.xml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── chengjingwen │ │ │ │ ├── entity │ │ │ │ ├── PaymentInfo.java │ │ │ │ └── PaymentType.java │ │ │ │ └── service │ │ │ │ ├── PaymentInfoService.java │ │ │ │ └── PaymentTypeService.java │ │ │ └── resources │ │ │ ├── acp_sdk.properties │ │ │ └── log4j.properties │ └── target │ │ └── classes │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── acp_sdk.properties │ │ ├── com │ │ └── chengjingwen │ │ │ ├── entity │ │ │ ├── PaymentInfo.class │ │ │ └── PaymentType.class │ │ │ └── service │ │ │ ├── PaymentInfoService.class │ │ │ └── PaymentTypeService.class │ │ └── log4j.properties └── pom.xml ├── chengjingwen-shopping-commodity ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ └── org.eclipse.wst.common.project.facet.core.xml ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── chengjingwen │ │ │ ├── CommodityServer.java │ │ │ ├── dao │ │ │ ├── ItemCatDao.java │ │ │ ├── ItemDao.java │ │ │ └── ItemDescDao.java │ │ │ └── service │ │ │ └── impl │ │ │ ├── ItemDescServiceImpl.java │ │ │ └── ItemServiceImpl.java │ │ └── resources │ │ └── application.yml └── target │ └── classes │ ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── com.chengjingwen │ │ └── chengjingwen-shopping-commodity │ │ ├── pom.properties │ │ └── pom.xml │ ├── application.yml │ └── com │ └── chengjingwen │ ├── CommodityServer.class │ ├── dao │ ├── ItemCatDao.class │ ├── ItemDao.class │ └── ItemDescDao.class │ └── service │ └── impl │ ├── ItemDescServiceImpl.class │ └── ItemServiceImpl.class ├── chengjingwen-shopping-common ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ └── org.eclipse.wst.common.project.facet.core.xml ├── pom.xml ├── src │ └── main │ │ └── java │ │ └── com │ │ └── chengjingwen │ │ ├── common │ │ ├── api │ │ │ └── BaseApiService.java │ │ ├── entity │ │ │ ├── BaseEntity.java │ │ │ └── TestEntity.java │ │ ├── log │ │ │ └── LogAspectServiceApi.java │ │ ├── mybatis │ │ │ ├── BaseDao.java │ │ │ └── BaseProvider.java │ │ ├── redis │ │ │ └── BaseRedisService.java │ │ └── token │ │ │ └── TokenUtils.java │ │ ├── constants │ │ ├── BaseApiConstants.java │ │ ├── Constants.java │ │ ├── DBTableConstants.java │ │ └── MQInterfaceType.java │ │ ├── utils │ │ ├── DateUtils.java │ │ ├── MD5Util.java │ │ ├── ReflectionUtils.java │ │ └── ResultUtils.java │ │ └── web │ │ └── CookieUtil.java └── target │ └── classes │ ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── com.chengjingwen │ │ └── chengjingwen-shopping-common │ │ ├── pom.properties │ │ └── pom.xml │ └── com │ └── chengjingwen │ ├── common │ ├── api │ │ └── BaseApiService.class │ ├── entity │ │ ├── BaseEntity.class │ │ └── TestEntity.class │ ├── log │ │ └── LogAspectServiceApi.class │ ├── mybatis │ │ ├── BaseDao.class │ │ ├── BaseProvider$1.class │ │ └── BaseProvider.class │ ├── redis │ │ └── BaseRedisService.class │ └── token │ │ └── TokenUtils.class │ ├── constants │ ├── BaseApiConstants.class │ ├── Constants.class │ ├── DBTableConstants.class │ └── MQInterfaceType.class │ ├── utils │ ├── DateUtils.class │ ├── MD5Util.class │ ├── ReflectionUtils$1.class │ ├── ReflectionUtils.class │ └── ResultUtils.class │ └── web │ └── CookieUtil.class ├── chengjingwen-shopping-eurekaserver ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ └── org.eclipse.wst.common.project.facet.core.xml ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── chengjingwen │ │ │ └── app │ │ │ └── EurekaServer.java │ │ └── resources │ │ └── application.yml └── target │ ├── chengjingwen-shopping-eurekaserver-0.0.1-SNAPSHOT.jar │ ├── chengjingwen-shopping-eurekaserver-0.0.1-SNAPSHOT.jar.original │ ├── classes │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── maven │ │ │ └── com.chengjingwen │ │ │ └── chengjingwen-shopping-eurekaserver │ │ │ ├── pom.properties │ │ │ └── pom.xml │ ├── application.yml │ └── com │ │ └── chengjingwen │ │ └── app │ │ └── EurekaServer.class │ ├── maven-archiver │ └── pom.properties │ └── maven-status │ └── maven-compiler-plugin │ ├── compile │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── testCompile │ └── default-testCompile │ └── inputFiles.lst ├── chengjingwen-shopping-member ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ └── org.eclipse.wst.common.project.facet.core.xml ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── chengjingwen │ │ │ ├── MemberServer.java │ │ │ ├── api │ │ │ └── service │ │ │ │ └── impl │ │ │ │ ├── DemoApiServiceImpl.java │ │ │ │ └── UserServiceImpl.java │ │ │ ├── dao │ │ │ └── UserDao.java │ │ │ ├── manage │ │ │ ├── UserServiceManage.java │ │ │ └── impl │ │ │ │ └── UserServiceManageImpl.java │ │ │ └── mq │ │ │ └── producer │ │ │ └── RegisterMailboxProducer.java │ │ └── resources │ │ └── application.yml └── target │ └── classes │ ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── com.chengjingwen │ │ └── chengjingwen-shopping-member │ │ ├── pom.properties │ │ └── pom.xml │ ├── application.yml │ └── com │ └── chengjingwen │ ├── MemberServer.class │ ├── api │ └── service │ │ └── impl │ │ ├── DemoApiServiceImpl.class │ │ └── UserServiceImpl.class │ ├── dao │ └── UserDao.class │ ├── manage │ ├── UserServiceManage.class │ └── impl │ │ └── UserServiceManageImpl.class │ └── mq │ └── producer │ └── RegisterMailboxProducer.class ├── chengjingwen-shopping-message ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ └── org.eclipse.wst.common.project.facet.core.xml ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── chengjingwen │ │ │ ├── MessageServer.java │ │ │ ├── adapter │ │ │ └── MessageAdapter.java │ │ │ ├── mq │ │ │ └── distribute │ │ │ │ └── ConsumerDistribute.java │ │ │ └── service │ │ │ └── SMSMailboxService.java │ │ └── resources │ │ └── application.yml └── target │ └── classes │ ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── com.chengjingwen │ │ └── chengjingwen-shopping-message │ │ ├── pom.properties │ │ └── pom.xml │ ├── application.yml │ └── com │ └── chengjingwen │ ├── MessageServer.class │ ├── adapter │ └── MessageAdapter.class │ ├── mq │ └── distribute │ │ └── ConsumerDistribute.class │ └── service │ └── SMSMailboxService.class ├── chengjingwen-shopping-mobile-web ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ └── org.eclipse.wst.common.project.facet.core.xml ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── chengjingwen │ │ │ ├── AppMobile.java │ │ │ ├── base │ │ │ └── controller │ │ │ │ └── BaseController.java │ │ │ ├── controller │ │ │ ├── DemoController.java │ │ │ ├── LoginController.java │ │ │ └── RegistContoroller.java │ │ │ └── feign │ │ │ └── UserFeign.java │ │ └── resources │ │ ├── application.yml │ │ ├── qqconnectconfig.properties │ │ ├── static │ │ ├── README.md │ │ ├── address.html │ │ ├── address_add.html │ │ ├── back.html │ │ ├── cart.html │ │ ├── category.html │ │ ├── comment.html │ │ ├── coupon.html │ │ ├── css │ │ │ ├── adaptive.css │ │ │ ├── cart.css │ │ │ ├── common.css │ │ │ ├── index.css │ │ │ ├── loading.css │ │ │ ├── login.css │ │ │ ├── order.css │ │ │ ├── order_info.css │ │ │ └── user.css │ │ ├── download.html │ │ ├── fix.html │ │ ├── fonts │ │ │ ├── iconfont1.eot │ │ │ ├── iconfont2.woff │ │ │ ├── iconfont3.ttf │ │ │ └── iconfont4.svg │ │ ├── goods.html │ │ ├── goods_files │ │ │ └── xmapp_b17276b.css │ │ ├── images │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── T13yAgBvZT1RXrhCrK.jpg │ │ │ ├── T19OV_BgKT1RXrhCrK!720x720.jpg │ │ │ ├── T1DhbvBsbv1RXrhCrK.jpg │ │ │ ├── T1NKV_BvZT1RXrhCrK!720x720.jpg │ │ │ ├── T1QtxTBvET1RXrhCrK!180x180.jpg │ │ │ ├── T1QtxTBvET1RXrhCrK.jpg │ │ │ ├── T1Z0b_BgWv1RXrhCrK!720x720.jpg │ │ │ ├── T1ggWQBybT1RXrhCrK!180x180.jpg │ │ │ ├── T1ltWvBCxv1RXrhCrK!180x180.jpg │ │ │ ├── T1wLDTBbxT1RXrhCrK.jpg │ │ │ ├── T1zFxvB7xT1RXrhCrK.jpg │ │ │ ├── TDSbihaoshuigai!720x720.jpg │ │ │ ├── TDSjiancebi_01!720x720.jpg │ │ │ ├── TDSjiancebi_02!720x720.jpg │ │ │ ├── TDSjiancebi_03!720x720.jpg │ │ │ ├── TDSjiancebi_04!720x720.jpg │ │ │ ├── TDSjiancebi_05!720x720.jpg │ │ │ ├── TDSjiancebi_06!720x720.jpg │ │ │ ├── TDSjiancebi_07!720x720.jpg │ │ │ ├── TDSjiancebi_09!720x720.jpg │ │ │ ├── b5-0.png │ │ │ ├── banner1.jpg │ │ │ ├── banner2.jpg │ │ │ ├── cart.png │ │ │ ├── close.png │ │ │ ├── loadingClose.png │ │ │ ├── logo.png │ │ │ ├── order1.jpg │ │ │ ├── order2.jpg │ │ │ └── sign_icon.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jquery-3.2.1.min.js │ │ │ ├── ready.js │ │ │ └── swipe.js │ │ ├── list.html │ │ ├── login.html │ │ ├── order.html │ │ ├── order_info.html │ │ ├── order_logistics.html │ │ ├── order_recharge.html │ │ ├── order_wait.html │ │ ├── register.html │ │ ├── search.html │ │ ├── service.html │ │ ├── swap.html │ │ └── user.html │ │ └── templates │ │ ├── associatedAccount.ftl │ │ ├── common │ │ ├── bottom.ftl │ │ └── error.ftl │ │ ├── index.ftl │ │ ├── itemDesc.ftl │ │ ├── login.ftl │ │ └── regist.ftl └── target │ └── classes │ ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── com.chengjingwen │ │ └── chengjingwen-shopping-mobile-web │ │ ├── pom.properties │ │ └── pom.xml │ ├── application.yml │ ├── com │ └── chengjingwen │ │ ├── AppMobile.class │ │ ├── base │ │ └── controller │ │ │ └── BaseController.class │ │ ├── controller │ │ ├── DemoController.class │ │ ├── LoginController.class │ │ └── RegistContoroller.class │ │ └── feign │ │ └── UserFeign.class │ ├── qqconnectconfig.properties │ ├── static │ ├── README.md │ ├── address.html │ ├── address_add.html │ ├── back.html │ ├── cart.html │ ├── category.html │ ├── comment.html │ ├── coupon.html │ ├── css │ │ ├── adaptive.css │ │ ├── cart.css │ │ ├── common.css │ │ ├── index.css │ │ ├── loading.css │ │ ├── login.css │ │ ├── order.css │ │ ├── order_info.css │ │ └── user.css │ ├── download.html │ ├── fix.html │ ├── fonts │ │ ├── iconfont1.eot │ │ ├── iconfont2.woff │ │ ├── iconfont3.ttf │ │ └── iconfont4.svg │ ├── goods.html │ ├── goods_files │ │ └── xmapp_b17276b.css │ ├── images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── T13yAgBvZT1RXrhCrK.jpg │ │ ├── T19OV_BgKT1RXrhCrK!720x720.jpg │ │ ├── T1DhbvBsbv1RXrhCrK.jpg │ │ ├── T1NKV_BvZT1RXrhCrK!720x720.jpg │ │ ├── T1QtxTBvET1RXrhCrK!180x180.jpg │ │ ├── T1QtxTBvET1RXrhCrK.jpg │ │ ├── T1Z0b_BgWv1RXrhCrK!720x720.jpg │ │ ├── T1ggWQBybT1RXrhCrK!180x180.jpg │ │ ├── T1ltWvBCxv1RXrhCrK!180x180.jpg │ │ ├── T1wLDTBbxT1RXrhCrK.jpg │ │ ├── T1zFxvB7xT1RXrhCrK.jpg │ │ ├── TDSbihaoshuigai!720x720.jpg │ │ ├── TDSjiancebi_01!720x720.jpg │ │ ├── TDSjiancebi_02!720x720.jpg │ │ ├── TDSjiancebi_03!720x720.jpg │ │ ├── TDSjiancebi_04!720x720.jpg │ │ ├── TDSjiancebi_05!720x720.jpg │ │ ├── TDSjiancebi_06!720x720.jpg │ │ ├── TDSjiancebi_07!720x720.jpg │ │ ├── TDSjiancebi_09!720x720.jpg │ │ ├── b5-0.png │ │ ├── banner1.jpg │ │ ├── banner2.jpg │ │ ├── cart.png │ │ ├── close.png │ │ ├── loadingClose.png │ │ ├── logo.png │ │ ├── order1.jpg │ │ ├── order2.jpg │ │ └── sign_icon.png │ ├── index.html │ ├── js │ │ ├── jquery-3.2.1.min.js │ │ ├── ready.js │ │ └── swipe.js │ ├── list.html │ ├── login.html │ ├── order.html │ ├── order_info.html │ ├── order_logistics.html │ ├── order_recharge.html │ ├── order_wait.html │ ├── register.html │ ├── search.html │ ├── service.html │ ├── swap.html │ └── user.html │ └── templates │ ├── associatedAccount.ftl │ ├── common │ ├── bottom.ftl │ └── error.ftl │ ├── index.ftl │ ├── itemDesc.ftl │ ├── login.ftl │ └── regist.ftl ├── chengjingwen-shopping-pay-web ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ └── org.eclipse.wst.common.project.facet.core.xml ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ ├── chengjingwen │ │ │ ├── AppPayWeb.java │ │ │ ├── base │ │ │ │ └── controller │ │ │ │ │ └── BaseController.java │ │ │ ├── controller │ │ │ │ ├── PayController.java │ │ │ │ └── callback │ │ │ │ │ └── YinLianCallbackController.java │ │ │ ├── feign │ │ │ │ ├── PaymentInfoFeign.java │ │ │ │ └── PaymentTypeFeign.java │ │ │ ├── load │ │ │ │ └── AutoLoadRunner.java │ │ │ └── pay │ │ │ │ └── service │ │ │ │ ├── CallbackService.java │ │ │ │ ├── PayAdaptService.java │ │ │ │ ├── PayService.java │ │ │ │ └── impl │ │ │ │ ├── PayServiceImpl.java │ │ │ │ ├── YinLianPay.java │ │ │ │ └── YinlianCallbackServiceImpl.java │ │ │ └── unionpay │ │ │ └── acp │ │ │ └── sdk │ │ │ ├── AcpService.java │ │ │ ├── BaseHttpSSLSocketFactory.java │ │ │ ├── CertUtil.java │ │ │ ├── DemoBase.java │ │ │ ├── HttpClient.java │ │ │ ├── LogUtil.java │ │ │ ├── SDKConfig.java │ │ │ ├── SDKConstants.java │ │ │ ├── SDKUtil.java │ │ │ └── SecureUtil.java │ │ └── resources │ │ ├── acp_sdk.properties │ │ ├── application.yml │ │ ├── log4j.properties │ │ ├── static │ │ ├── css │ │ │ ├── adaptive.css │ │ │ ├── cart.css │ │ │ ├── common.css │ │ │ ├── index.css │ │ │ ├── loading.css │ │ │ ├── login.css │ │ │ ├── order.css │ │ │ ├── order_info.css │ │ │ └── user.css │ │ ├── fonts │ │ │ ├── iconfont1.eot │ │ │ ├── iconfont2.woff │ │ │ ├── iconfont3.ttf │ │ │ └── iconfont4.svg │ │ ├── goods_files │ │ │ └── xmapp_b17276b.css │ │ ├── images │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── T13yAgBvZT1RXrhCrK.jpg │ │ │ ├── T19OV_BgKT1RXrhCrK!720x720.jpg │ │ │ ├── T1DhbvBsbv1RXrhCrK.jpg │ │ │ ├── T1NKV_BvZT1RXrhCrK!720x720.jpg │ │ │ ├── T1QtxTBvET1RXrhCrK!180x180.jpg │ │ │ ├── T1QtxTBvET1RXrhCrK.jpg │ │ │ ├── T1Z0b_BgWv1RXrhCrK!720x720.jpg │ │ │ ├── T1ggWQBybT1RXrhCrK!180x180.jpg │ │ │ ├── T1ltWvBCxv1RXrhCrK!180x180.jpg │ │ │ ├── T1wLDTBbxT1RXrhCrK.jpg │ │ │ ├── T1zFxvB7xT1RXrhCrK.jpg │ │ │ ├── TDSbihaoshuigai!720x720.jpg │ │ │ ├── TDSjiancebi_01!720x720.jpg │ │ │ ├── TDSjiancebi_02!720x720.jpg │ │ │ ├── TDSjiancebi_03!720x720.jpg │ │ │ ├── TDSjiancebi_04!720x720.jpg │ │ │ ├── TDSjiancebi_05!720x720.jpg │ │ │ ├── TDSjiancebi_06!720x720.jpg │ │ │ ├── TDSjiancebi_07!720x720.jpg │ │ │ ├── TDSjiancebi_09!720x720.jpg │ │ │ ├── b5-0.png │ │ │ ├── banner1.jpg │ │ │ ├── banner2.jpg │ │ │ ├── cart.png │ │ │ ├── close.png │ │ │ ├── loadingClose.png │ │ │ ├── logo.png │ │ │ ├── order1.jpg │ │ │ ├── order2.jpg │ │ │ └── sign_icon.png │ │ └── js │ │ │ ├── jquery-3.2.1.min.js │ │ │ ├── ready.js │ │ │ └── swipe.js │ │ └── templates │ │ ├── pay_fail.ftl │ │ └── pay_success.ftl └── target │ └── classes │ ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── com.chengjingwen │ │ └── chengjingwen-shopping-pay-web │ │ ├── pom.properties │ │ └── pom.xml │ ├── acp_sdk.properties │ ├── application.yml │ ├── com │ ├── chengjingwen │ │ ├── AppPayWeb.class │ │ ├── base │ │ │ └── controller │ │ │ │ └── BaseController.class │ │ ├── controller │ │ │ ├── PayController.class │ │ │ └── callback │ │ │ │ └── YinLianCallbackController.class │ │ ├── feign │ │ │ ├── PaymentInfoFeign.class │ │ │ └── PaymentTypeFeign.class │ │ ├── load │ │ │ └── AutoLoadRunner.class │ │ └── pay │ │ │ └── service │ │ │ ├── CallbackService.class │ │ │ ├── PayAdaptService.class │ │ │ ├── PayService.class │ │ │ └── impl │ │ │ ├── PayServiceImpl.class │ │ │ ├── YinLianPay.class │ │ │ └── YinlianCallbackServiceImpl.class │ └── unionpay │ │ └── acp │ │ └── sdk │ │ ├── AcpService.class │ │ ├── BaseHttpSSLSocketFactory$MyX509TrustManager.class │ │ ├── BaseHttpSSLSocketFactory$TrustAnyHostnameVerifier.class │ │ ├── BaseHttpSSLSocketFactory.class │ │ ├── CertUtil$CerFilter.class │ │ ├── CertUtil.class │ │ ├── DemoBase.class │ │ ├── HttpClient.class │ │ ├── LogUtil.class │ │ ├── SDKConfig.class │ │ ├── SDKConstants.class │ │ ├── SDKUtil.class │ │ └── SecureUtil.class │ ├── log4j.properties │ ├── static │ ├── css │ │ ├── adaptive.css │ │ ├── cart.css │ │ ├── common.css │ │ ├── index.css │ │ ├── loading.css │ │ ├── login.css │ │ ├── order.css │ │ ├── order_info.css │ │ └── user.css │ ├── fonts │ │ ├── iconfont1.eot │ │ ├── iconfont2.woff │ │ ├── iconfont3.ttf │ │ └── iconfont4.svg │ ├── goods_files │ │ └── xmapp_b17276b.css │ ├── images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── T13yAgBvZT1RXrhCrK.jpg │ │ ├── T19OV_BgKT1RXrhCrK!720x720.jpg │ │ ├── T1DhbvBsbv1RXrhCrK.jpg │ │ ├── T1NKV_BvZT1RXrhCrK!720x720.jpg │ │ ├── T1QtxTBvET1RXrhCrK!180x180.jpg │ │ ├── T1QtxTBvET1RXrhCrK.jpg │ │ ├── T1Z0b_BgWv1RXrhCrK!720x720.jpg │ │ ├── T1ggWQBybT1RXrhCrK!180x180.jpg │ │ ├── T1ltWvBCxv1RXrhCrK!180x180.jpg │ │ ├── T1wLDTBbxT1RXrhCrK.jpg │ │ ├── T1zFxvB7xT1RXrhCrK.jpg │ │ ├── TDSbihaoshuigai!720x720.jpg │ │ ├── TDSjiancebi_01!720x720.jpg │ │ ├── TDSjiancebi_02!720x720.jpg │ │ ├── TDSjiancebi_03!720x720.jpg │ │ ├── TDSjiancebi_04!720x720.jpg │ │ ├── TDSjiancebi_05!720x720.jpg │ │ ├── TDSjiancebi_06!720x720.jpg │ │ ├── TDSjiancebi_07!720x720.jpg │ │ ├── TDSjiancebi_09!720x720.jpg │ │ ├── b5-0.png │ │ ├── banner1.jpg │ │ ├── banner2.jpg │ │ ├── cart.png │ │ ├── close.png │ │ ├── loadingClose.png │ │ ├── logo.png │ │ ├── order1.jpg │ │ ├── order2.jpg │ │ └── sign_icon.png │ └── js │ │ ├── jquery-3.2.1.min.js │ │ ├── ready.js │ │ └── swipe.js │ └── templates │ ├── pay_fail.ftl │ └── pay_success.ftl ├── chengjingwen-shopping-pay ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ └── org.eclipse.wst.common.project.facet.core.xml ├── base │ └── app │ │ ├── base.2018-01-29.log │ │ └── base.2018-01-30.log ├── pom.xml ├── src │ └── main │ │ ├── java │ │ └── com │ │ │ └── chengjingwen │ │ │ ├── PayServer.java │ │ │ ├── dao │ │ │ ├── PaymentInfoDao.java │ │ │ └── PaymentTypeDao.java │ │ │ └── service │ │ │ └── impl │ │ │ ├── PaymentInfoServiceImpl.java │ │ │ └── PaymentTypeServiceImpl.java │ │ └── resources │ │ ├── application.yml │ │ └── logback.xml └── target │ └── classes │ ├── META-INF │ ├── MANIFEST.MF │ └── maven │ │ └── com.chengjingwen │ │ └── chengjingwen-shopping-pay │ │ ├── pom.properties │ │ └── pom.xml │ ├── application.yml │ ├── com │ └── chengjingwen │ │ ├── PayServer.class │ │ ├── dao │ │ ├── PaymentInfoDao.class │ │ └── PaymentTypeDao.class │ │ └── service │ │ └── impl │ │ ├── PaymentInfoServiceImpl.class │ │ └── PaymentTypeServiceImpl.class │ └── logback.xml └── pom.xml /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-parent 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.m2e.core.maven2Builder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.m2e.core.maven2Nature 16 | 17 | 18 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-api 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.m2e.core.maven2Builder 10 | 11 | 12 | 13 | 14 | 15 | org.eclipse.m2e.core.maven2Nature 16 | 17 | 18 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-commodity-api 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.chengjingwen 6 | chengjingwen-shopping-api 7 | 0.0.1-SNAPSHOT 8 | 9 | chengjingwen-shopping-commodity-api 10 | 11 | 12 | 13 | com.chengjingwen 14 | chengjingwen-shopping-common 15 | 0.0.1-SNAPSHOT 16 | 17 | 18 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/src/main/java/com/chengjingwen/api/service/ItemDescService.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.api.service; 2 | 3 | import java.util.Map; 4 | 5 | 6 | import org.springframework.web.bind.annotation.RequestMapping; 7 | import org.springframework.web.bind.annotation.RequestParam; 8 | 9 | /** 10 | * 商品详情 11 | * 12 | * @author Administrator 13 | * 14 | */ 15 | @RequestMapping("/item") 16 | public interface ItemDescService { 17 | 18 | /** 19 | * 查询商品详情 20 | * 21 | * @return 22 | */ 23 | @RequestMapping("/getItemDesc") 24 | public Map getItemDesc(@RequestParam("id") Long id); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/src/main/java/com/chengjingwen/api/service/ItemService.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.api.service; 2 | 3 | import java.util.Map; 4 | 5 | 6 | import org.springframework.web.bind.annotation.RequestMapping; 7 | import org.springframework.web.bind.annotation.RequestParam; 8 | 9 | /** 10 | * 11 | * 功能说明:商品服务 12 | * 13 | * @author 余胜军 14 | * 15 | */ 16 | @RequestMapping("/item") 17 | public interface ItemService { 18 | /** 19 | * 首页展示商品 20 | * 21 | * @return 22 | */ 23 | @RequestMapping("/getIndexItem") 24 | public Map getIndexItem(); 25 | 26 | /** 27 | * 查询商品 28 | * 29 | * @return 30 | */ 31 | @RequestMapping("/geItem") 32 | public Map geItem(@RequestParam("id") Long id); 33 | } 34 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/src/main/java/com/chengjingwen/entity/ItemCatEntity.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.entity; 2 | 3 | import java.util.Date; 4 | 5 | 6 | import lombok.Getter; 7 | import lombok.Setter; 8 | 9 | /** 10 | * 商品类型 11 | * 12 | * @author Administrator 13 | * 14 | */ 15 | @Getter 16 | @Setter 17 | public class ItemCatEntity { 18 | private Long id; 19 | 20 | private Long parentId; 21 | 22 | private String name; 23 | 24 | private String img; 25 | 26 | private Integer status; 27 | 28 | private Integer sortOrder; 29 | 30 | private Boolean isParent; 31 | 32 | private Date created; 33 | 34 | private Date updated; 35 | } 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/src/main/java/com/chengjingwen/entity/ItemDescEntity.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.entity; 2 | 3 | import com.chengjingwen.common.entity.BaseEntity; 4 | 5 | 6 | import lombok.Getter; 7 | import lombok.Setter; 8 | 9 | @Getter 10 | @Setter 11 | public class ItemDescEntity extends BaseEntity { 12 | 13 | private String itemdesc; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/src/main/java/com/chengjingwen/entity/ItemEntity.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.entity; 2 | 3 | import java.math.BigInteger; 4 | 5 | 6 | import com.chengjingwen.common.entity.BaseEntity; 7 | 8 | import lombok.Getter; 9 | import lombok.Setter; 10 | 11 | /** 12 | * 商品 13 | * @author Administrator 14 | * 15 | */ 16 | @Getter 17 | @Setter 18 | public class ItemEntity extends BaseEntity { 19 | 20 | /** 21 | * 标题 22 | */ 23 | private String title; 24 | /** 25 | * 商品卖点 26 | */ 27 | private String sellPoint; 28 | /** 29 | * 商品价格 30 | */ 31 | private BigInteger price; 32 | /** 33 | * 商品数量 34 | */ 35 | private Integer num; 36 | /** 37 | * 商品条纹码 38 | * 39 | */ 40 | private String barcode; 41 | /** 42 | * 图片地址 43 | */ 44 | private String image; 45 | /** 46 | * 父亲ID 47 | */ 48 | private Long parentId; 49 | /** 50 | * 栏目 51 | */ 52 | private Long cid; 53 | /** 54 | * 商品状态,1-正常,2-下架,3-删除 55 | */ 56 | private Byte status; 57 | /** 58 | * 商品名称 59 | */ 60 | private String typeName; 61 | 62 | } 63 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/src/main/java/com/chengjingwen/entity/TestEntity.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.entity; 2 | 3 | public class TestEntity { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-commodity-api 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-api/chengjingwen-shopping-comm 9 | odity-api/ 10 | Created-By: Maven Integration for Eclipse 11 | Implementation-Vendor: Pivotal Software, Inc. 12 | 13 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/api/service/ItemDescService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/api/service/ItemDescService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/api/service/ItemService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/api/service/ItemService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/entity/ItemCatEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/entity/ItemCatEntity.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/entity/ItemDescEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/entity/ItemDescEntity.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/entity/ItemEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/entity/ItemEntity.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/entity/TestEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-commodity-api/target/classes/com/chengjingwen/entity/TestEntity.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-member-api 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.chengjingwen 6 | chengjingwen-shopping-api 7 | 0.0.1-SNAPSHOT 8 | 9 | chengjingwen-shopping-member-api 10 | 11 | 12 | 13 | com.chengjingwen 14 | chengjingwen-shopping-common 15 | 0.0.1-SNAPSHOT 16 | 17 | 18 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/src/main/java/com/chengjingwen/api/service/DemoApiService.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.api.service; 2 | 3 | import java.util.Map; 4 | 5 | 6 | import org.springframework.web.bind.annotation.GetMapping; 7 | import org.springframework.web.bind.annotation.RequestMapping; 8 | 9 | 10 | /** 11 | * demo 12 | * 13 | * @author tangc 14 | * 15 | */ 16 | @RequestMapping("/demo") 17 | public interface DemoApiService { 18 | 19 | /** 20 | * 服务demo 21 | * 22 | * @return 23 | */ 24 | @GetMapping("/demo") 25 | public Map demo(); 26 | 27 | @GetMapping("/setKey") 28 | public Map setKey(String key, String value); 29 | 30 | @GetMapping("/getKey") 31 | public Map getKey(String key); 32 | } 33 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/src/main/java/com/chengjingwen/entity/UserEntity.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.entity; 2 | 3 | import com.chengjingwen.common.entity.BaseEntity; 4 | 5 | import lombok.Getter; 6 | import lombok.Setter; 7 | 8 | @Getter 9 | @Setter 10 | public class UserEntity extends BaseEntity { 11 | 12 | private String userName; 13 | private String password; 14 | private String phone; 15 | private String email; 16 | private String openId; 17 | 18 | 19 | } 20 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-member-api 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-api/chengjingwen-shopping-memb 9 | er-api/ 10 | Created-By: Maven Integration for Eclipse 11 | Implementation-Vendor: Pivotal Software, Inc. 12 | 13 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/target/classes/com/chengjingwen/api/service/DemoApiService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-member-api/target/classes/com/chengjingwen/api/service/DemoApiService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/target/classes/com/chengjingwen/api/service/UserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-member-api/target/classes/com/chengjingwen/api/service/UserService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-member-api/target/classes/com/chengjingwen/entity/UserEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-member-api/target/classes/com/chengjingwen/entity/UserEntity.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-pay-api 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/main/resources/acp_sdk.properties=UTF-8 5 | encoding//src/test/java=UTF-8 6 | encoding//src/test/resources=UTF-8 7 | encoding/=UTF-8 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.chengjingwen 6 | chengjingwen-shopping-api 7 | 0.0.1-SNAPSHOT 8 | 9 | chengjingwen-shopping-pay-api 10 | 11 | 12 | 13 | com.chengjingwen 14 | chengjingwen-shopping-common 15 | 0.0.1-SNAPSHOT 16 | 17 | 18 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/src/main/java/com/chengjingwen/entity/PaymentInfo.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.entity; 2 | 3 | 4 | 5 | import com.chengjingwen.common.entity.BaseEntity; 6 | 7 | import lombok.Getter; 8 | import lombok.Setter; 9 | 10 | // 11 | @Getter 12 | @Setter 13 | public class PaymentInfo extends BaseEntity { 14 | 15 | /** 16 | * 支付类型 17 | */ 18 | private Long typeId; 19 | /** 20 | * 订单编号 21 | */ 22 | private String orderId; 23 | /** 24 | * 第三方平台支付id 25 | */ 26 | private String platformorderId; 27 | /** 28 | * 价格 以分为单位 29 | */ 30 | private Long price; 31 | /** 32 | * 支付来源 33 | */ 34 | private String source; 35 | /** 36 | * 支付来源 37 | */ 38 | private Integer state; 39 | /** 40 | * 支付报文 41 | */ 42 | private String payMessage; 43 | 44 | 45 | } 46 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/src/main/java/com/chengjingwen/entity/PaymentType.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.entity; 2 | 3 | import com.chengjingwen.common.entity.BaseEntity; 4 | 5 | 6 | import lombok.Getter; 7 | import lombok.Setter; 8 | 9 | @Getter 10 | @Setter 11 | public class PaymentType extends BaseEntity { 12 | 13 | /** 14 | * 支付平台 15 | */ 16 | private String typeName; 17 | /** 18 | * 同步通知 19 | */ 20 | private String frontUrl; 21 | 22 | /** 23 | * 异步通知 24 | */ 25 | private String backUrl; 26 | /** 27 | * 商户id 28 | */ 29 | private String merchantId; 30 | 31 | } -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/src/main/java/com/chengjingwen/service/PaymentTypeService.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.service; 2 | 3 | import java.util.Map; 4 | 5 | import org.springframework.web.bind.annotation.RequestMapping; 6 | import org.springframework.web.bind.annotation.RequestParam; 7 | 8 | /** 9 | * 提供支付类型接口 10 | * @author tangc 11 | * 12 | */ 13 | @RequestMapping("/pay") 14 | public interface PaymentTypeService { 15 | /** 16 | * 根据id获得支付类型 17 | * @param id 18 | * @return 19 | */ 20 | @RequestMapping("/getPaymentType") 21 | public Map getPaymentType(@RequestParam("id") Long id); 22 | 23 | 24 | } 25 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-pay-api 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-api/chengjingwen-shopping-pay- 9 | api/ 10 | Created-By: Maven Integration for Eclipse 11 | Implementation-Vendor: Pivotal Software, Inc. 12 | 13 | -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/target/classes/com/chengjingwen/entity/PaymentInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-pay-api/target/classes/com/chengjingwen/entity/PaymentInfo.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/target/classes/com/chengjingwen/entity/PaymentType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-pay-api/target/classes/com/chengjingwen/entity/PaymentType.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/target/classes/com/chengjingwen/service/PaymentInfoService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-pay-api/target/classes/com/chengjingwen/service/PaymentInfoService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/chengjingwen-shopping-pay-api/target/classes/com/chengjingwen/service/PaymentTypeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-api/chengjingwen-shopping-pay-api/target/classes/com/chengjingwen/service/PaymentTypeService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-api/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | 4 | com.chengjingwen 5 | chengjingwen-shopping-parent 6 | 0.0.1-SNAPSHOT 7 | 8 | chengjingwen-shopping-api 9 | pom 10 | 11 | chengjingwen-shopping-member-api 12 | chengjingwen-shopping-member 13 | chengjingwen-shopping-commodity-api 14 | chengjingwen-shopping-pay-api 15 | 16 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-commodity 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | 4 | com.chengjingwen 5 | chengjingwen-shopping-parent 6 | 0.0.1-SNAPSHOT 7 | 8 | chengjingwen-shopping-commodity 9 | 10 | 11 | 12 | com.chengjingwen 13 | chengjingwen-shopping-commodity-api 14 | 0.0.1-SNAPSHOT 15 | 16 | 17 | com.chengjingwen 18 | chengjingwen-shopping-common 19 | 0.0.1-SNAPSHOT 20 | 21 | 22 | 23 | org.mybatis.spring.boot 24 | mybatis-spring-boot-starter 25 | 1.3.0 26 | 27 | 28 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/src/main/java/com/chengjingwen/CommodityServer.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | import org.springframework.cloud.netflix.eureka.EnableEurekaClient; 7 | 8 | @SpringBootApplication 9 | @EnableEurekaClient 10 | public class CommodityServer { 11 | 12 | public static void main(String[] args) { 13 | SpringApplication.run(CommodityServer.class, args); 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/src/main/java/com/chengjingwen/dao/ItemCatDao.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.dao; 2 | 3 | import java.util.List; 4 | 5 | 6 | import org.apache.ibatis.annotations.Mapper; 7 | import org.apache.ibatis.annotations.Select; 8 | 9 | import com.chengjingwen.entity.ItemCatEntity; 10 | 11 | @Mapper 12 | public interface ItemCatDao { 13 | @Select("select id as id , parent_id as parentId ,name as name, img as img,status as status , is_parent as isParent, created as created ,updated as updated from tb_item_cat") 14 | public List allItemCat(); 15 | } 16 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/src/main/java/com/chengjingwen/dao/ItemDao.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.dao; 2 | 3 | import java.util.List; 4 | 5 | 6 | import org.apache.ibatis.annotations.Mapper; 7 | import org.apache.ibatis.annotations.Select; 8 | import org.springframework.data.repository.query.Param; 9 | 10 | import com.chengjingwen.common.mybatis.BaseDao; 11 | import com.chengjingwen.entity.ItemEntity; 12 | 13 | @Mapper 14 | public interface ItemDao extends BaseDao { 15 | 16 | @Select("select a.id as id ,a.title as title ,a.sell_point as sellPoint, a.price as price,a.num as num,a.barcode as barcode,a.image as image ,a.parent_id as parentId,a.cid as cid,a.status as status,a.created as created,a.updated as updated from tb_item as a inner join tb_item_cat as b on a.parent_id=b.id where b.id =#{id} LIMIT 0,8") 17 | public List getIndexItem(@Param("id") Long id); 18 | 19 | @Select("select a.id as id ,a.title as title ,a.sell_point as sellPoint, a.price as price,a.num as num,a.barcode as barcode,a.image as image ,a.parent_id as parentId,a.cid as cid,a.status as status,a.created as created,a.updated as updated from tb_item as a where a.id =#{id}") 20 | public ItemEntity getItem(@Param("id") Long id); 21 | } 22 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/src/main/java/com/chengjingwen/dao/ItemDescDao.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.dao; 2 | 3 | import org.apache.ibatis.annotations.Mapper; 4 | 5 | import org.apache.ibatis.annotations.Select; 6 | import org.springframework.data.repository.query.Param; 7 | 8 | import com.chengjingwen.common.mybatis.BaseDao; 9 | import com.chengjingwen.entity.ItemDescEntity; 10 | 11 | @Mapper 12 | public interface ItemDescDao extends BaseDao { 13 | @Select(" SELECT id AS id , itemDesc as itemDesc , created as created,updated as updated FROM tb_item_desc where id=#{id} ") 14 | public ItemDescEntity getItemDesc(@Param("id") Long id); 15 | } 16 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/src/main/java/com/chengjingwen/service/impl/ItemDescServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.service.impl; 2 | 3 | import java.util.Map; 4 | 5 | 6 | import org.springframework.beans.factory.annotation.Autowired; 7 | import org.springframework.web.bind.annotation.RequestMapping; 8 | import org.springframework.web.bind.annotation.RequestParam; 9 | import org.springframework.web.bind.annotation.RestController; 10 | 11 | import com.chengjingwen.api.service.ItemDescService; 12 | import com.chengjingwen.common.api.BaseApiService; 13 | import com.chengjingwen.dao.ItemDescDao; 14 | import com.chengjingwen.entity.ItemDescEntity; 15 | 16 | @RestController 17 | public class ItemDescServiceImpl extends BaseApiService implements ItemDescService { 18 | @Autowired 19 | private ItemDescDao itemDescDao; 20 | 21 | @RequestMapping("/getItemDesc") 22 | public Map getItemDesc(@RequestParam("id") Long id) { 23 | ItemDescEntity itemDesc = itemDescDao.getItemDesc(id); 24 | return setResultSuccessData(itemDesc); 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8765 3 | # context-path: /member 4 | eureka: 5 | client: 6 | serviceUrl: 7 | defaultZone: http://localhost:8761/eureka/ 8 | spring: 9 | application: 10 | name: commodity 11 | redis: 12 | host: 192.168.1.9 13 | password: 14 | port: 6379 15 | pool: 16 | max-idle: 100 17 | min-idle: 1 18 | max-active: 1000 19 | max-wait: -1 20 | #数据库连接信息 21 | datasource: 22 | name: test 23 | url: jdbc:mysql://127.0.0.1:3306/itmayiedu-shopping 24 | username: root 25 | password: TCJWary123 26 | # 使用druid数据源 27 | type: com.alibaba.druid.pool.DruidDataSource 28 | driver-class-name: com.mysql.jdbc.Driver 29 | filters: stat 30 | maxActive: 20 31 | initialSize: 1 32 | maxWait: 60000 33 | minIdle: 1 34 | timeBetweenEvictionRunsMillis: 60000 35 | minEvictableIdleTimeMillis: 300000 36 | validationQuery: select 'x' 37 | testWhileIdle: true 38 | testOnBorrow: false 39 | testOnReturn: false 40 | poolPreparedStatements: true 41 | maxOpenPreparedStatements: 20 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-commodity 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-commodity/ 9 | Created-By: Maven Integration for Eclipse 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-commodity/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jan 30 15:56:58 EST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.chengjingwen 5 | m2e.projectName=chengjingwen-shopping-commodity 6 | m2e.projectLocation=C\:\\Users\\tangc\\eclipse-project\\chengjingwen-shopping-parent\\chengjingwen-shopping-commodity 7 | artifactId=chengjingwen-shopping-commodity 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-commodity/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | 4 | com.chengjingwen 5 | chengjingwen-shopping-parent 6 | 0.0.1-SNAPSHOT 7 | 8 | chengjingwen-shopping-commodity 9 | 10 | 11 | 12 | com.chengjingwen 13 | chengjingwen-shopping-commodity-api 14 | 0.0.1-SNAPSHOT 15 | 16 | 17 | com.chengjingwen 18 | chengjingwen-shopping-common 19 | 0.0.1-SNAPSHOT 20 | 21 | 22 | 23 | org.mybatis.spring.boot 24 | mybatis-spring-boot-starter 25 | 1.3.0 26 | 27 | 28 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8765 3 | # context-path: /member 4 | eureka: 5 | client: 6 | serviceUrl: 7 | defaultZone: http://localhost:8761/eureka/ 8 | spring: 9 | application: 10 | name: commodity 11 | redis: 12 | host: 192.168.1.9 13 | password: 14 | port: 6379 15 | pool: 16 | max-idle: 100 17 | min-idle: 1 18 | max-active: 1000 19 | max-wait: -1 20 | #数据库连接信息 21 | datasource: 22 | name: test 23 | url: jdbc:mysql://127.0.0.1:3306/itmayiedu-shopping 24 | username: root 25 | password: TCJWary123 26 | # 使用druid数据源 27 | type: com.alibaba.druid.pool.DruidDataSource 28 | driver-class-name: com.mysql.jdbc.Driver 29 | filters: stat 30 | maxActive: 20 31 | initialSize: 1 32 | maxWait: 60000 33 | minIdle: 1 34 | timeBetweenEvictionRunsMillis: 60000 35 | minEvictableIdleTimeMillis: 300000 36 | validationQuery: select 'x' 37 | testWhileIdle: true 38 | testOnBorrow: false 39 | testOnReturn: false 40 | poolPreparedStatements: true 41 | maxOpenPreparedStatements: 20 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/com/chengjingwen/CommodityServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-commodity/target/classes/com/chengjingwen/CommodityServer.class -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/com/chengjingwen/dao/ItemCatDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-commodity/target/classes/com/chengjingwen/dao/ItemCatDao.class -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/com/chengjingwen/dao/ItemDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-commodity/target/classes/com/chengjingwen/dao/ItemDao.class -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/com/chengjingwen/dao/ItemDescDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-commodity/target/classes/com/chengjingwen/dao/ItemDescDao.class -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/com/chengjingwen/service/impl/ItemDescServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-commodity/target/classes/com/chengjingwen/service/impl/ItemDescServiceImpl.class -------------------------------------------------------------------------------- /chengjingwen-shopping-commodity/target/classes/com/chengjingwen/service/impl/ItemServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-commodity/target/classes/com/chengjingwen/service/impl/ItemServiceImpl.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-common 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | 4 | com.chengjingwen 5 | chengjingwen-shopping-parent 6 | 0.0.1-SNAPSHOT 7 | 8 | chengjingwen-shopping-common 9 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/common/entity/BaseEntity.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.common.entity; 2 | 3 | import java.sql.Timestamp; 4 | 5 | import lombok.Getter; 6 | import lombok.Setter; 7 | 8 | /** 9 | * 封装一些相同字段和属性 10 | * 11 | * @author tangc 12 | * 13 | */ 14 | @Getter 15 | @Setter 16 | public class BaseEntity { 17 | /** 18 | * 主键 19 | */ 20 | private Long id; 21 | /** 22 | * 创建时间 23 | */ 24 | private Timestamp created; 25 | /** 26 | * 修改时间 27 | */ 28 | private Timestamp updated; 29 | } 30 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/common/entity/TestEntity.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.common.entity; 2 | 3 | import lombok.Getter; 4 | import lombok.Setter; 5 | 6 | @Getter 7 | @Setter 8 | public class TestEntity extends BaseEntity { 9 | 10 | private String userName; 11 | private String password; 12 | private String phone; 13 | private String email; 14 | 15 | } 16 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/common/mybatis/BaseDao.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.common.mybatis; 2 | 3 | import org.apache.ibatis.annotations.InsertProvider; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | public interface BaseDao { 7 | 8 | //注解作用:自定义sql语句 9 | @InsertProvider(method = "save", type = BaseProvider.class) 10 | public void save(@Param("oj")Object oj, @Param("table")String table); 11 | 12 | 13 | } 14 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/common/mybatis/BaseProvider.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.common.mybatis; 2 | 3 | import java.util.Map; 4 | 5 | import org.apache.ibatis.jdbc.SQL; 6 | 7 | import com.chengjingwen.utils.ReflectionUtils; 8 | 9 | public class BaseProvider { 10 | 11 | /** 12 | * 自定义封装sql语句 13 | * 14 | * @return 15 | */ 16 | public String save(Map map) { 17 | // 实体类 18 | Object oj = map.get("oj"); 19 | // 表名称 20 | String table = (String) map.get("table"); 21 | // 生成添加的sql语句,使用反射机制 22 | // 1.使用反射机制加载类的所有属性 23 | 24 | SQL sql = new SQL() { 25 | { 26 | INSERT_INTO(table); 27 | VALUES(ReflectionUtils.FatherAndSonField(oj), ReflectionUtils.FatherAndSonValue(oj)); 28 | } 29 | }; 30 | 31 | return sql.toString(); 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/common/token/TokenUtils.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.common.token; 2 | 3 | import java.util.UUID; 4 | 5 | import org.springframework.stereotype.Component; 6 | /** 7 | * 生成token 8 | * @author tangc 9 | * 10 | */ 11 | @Component 12 | public class TokenUtils { 13 | 14 | public String getToken() { 15 | return UUID.randomUUID().toString(); 16 | } 17 | 18 | /** 19 | * 获取支付token 20 | * @return 21 | */ 22 | public String getPayToken() { 23 | return "pay-" + UUID.randomUUID().toString(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/constants/BaseApiConstants.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.constants; 2 | 3 | public interface BaseApiConstants { 4 | 5 | Integer HTTP_200_CODE = 200; 6 | Integer HTTP_400_CODE = 400; 7 | 8 | String HTTP_MSG_NAME = "msg"; 9 | 10 | Integer HTTP_500_CODE = 500; 11 | 12 | String HTTP_SUCCESS_NAME = "success"; 13 | 14 | String HTTP_CODE_NAME = "code"; 15 | 16 | String HTTP_Data_NAME = "data"; 17 | 18 | } 19 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/constants/Constants.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.constants; 2 | 3 | /** 4 | * 时间常量 5 | * 6 | * @author tangc 7 | * 8 | */ 9 | public interface Constants { 10 | // 保证90天不失效 11 | long USER_TOKEN_TERMVALIDITY = 60 * 60 * 24 * 90l; 12 | 13 | int WEBUSER_COOKIE_TOKEN_TERMVALIDITY = 1000 * 60 * 60 * 24 * 90; 14 | 15 | String USER_TOKEN = "token"; 16 | 17 | String USER_SESSION_OPENID = "openid"; 18 | 19 | String USER_SOURCE_QQ = "qq"; 20 | 21 | String PAY_SUCCES = "ok"; 22 | String PAY_FAIL = "fail"; 23 | } 24 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/constants/DBTableConstants.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.constants; 2 | 3 | public interface DBTableConstants { 4 | //会员表 5 | String TABLE_MB_USER = "mb_user"; 6 | } 7 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/constants/MQInterfaceType.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.constants; 2 | 3 | public interface MQInterfaceType { 4 | 5 | 6 | String SMS_MAIL = "sms_mail"; 7 | } 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/src/main/java/com/chengjingwen/utils/ResultUtils.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.utils; 2 | 3 | import java.util.Map; 4 | 5 | import com.chengjingwen.constants.BaseApiConstants; 6 | 7 | public class ResultUtils { 8 | 9 | public static Object getResultMap(Map reusltItemDesc) { 10 | Integer code = (Integer) reusltItemDesc.get(BaseApiConstants.HTTP_CODE_NAME); 11 | if (code.equals(BaseApiConstants.HTTP_200_CODE)) { 12 | Object object = reusltItemDesc.get("data"); 13 | return object; 14 | } 15 | return null; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-common 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-common/ 9 | Created-By: Maven Integration for Eclipse 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-common/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jan 30 15:56:25 EST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.chengjingwen 5 | m2e.projectName=chengjingwen-shopping-common 6 | m2e.projectLocation=C\:\\Users\\tangc\\eclipse-project\\chengjingwen-shopping-parent\\chengjingwen-shopping-common 7 | artifactId=chengjingwen-shopping-common 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-common/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | 4 | com.chengjingwen 5 | chengjingwen-shopping-parent 6 | 0.0.1-SNAPSHOT 7 | 8 | chengjingwen-shopping-common 9 | -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/common/api/BaseApiService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/common/api/BaseApiService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/common/entity/BaseEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/common/entity/BaseEntity.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/common/entity/TestEntity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/common/entity/TestEntity.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/common/log/LogAspectServiceApi.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/common/log/LogAspectServiceApi.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/common/mybatis/BaseDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/common/mybatis/BaseDao.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/common/mybatis/BaseProvider$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/common/mybatis/BaseProvider$1.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/common/mybatis/BaseProvider.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/common/mybatis/BaseProvider.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/common/redis/BaseRedisService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/common/redis/BaseRedisService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/common/token/TokenUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/common/token/TokenUtils.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/constants/BaseApiConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/constants/BaseApiConstants.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/constants/Constants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/constants/Constants.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/constants/DBTableConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/constants/DBTableConstants.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/constants/MQInterfaceType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/constants/MQInterfaceType.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/DateUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/DateUtils.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/MD5Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/MD5Util.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/ReflectionUtils$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/ReflectionUtils$1.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/ReflectionUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/ReflectionUtils.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/ResultUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/utils/ResultUtils.class -------------------------------------------------------------------------------- /chengjingwen-shopping-common/target/classes/com/chengjingwen/web/CookieUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-common/target/classes/com/chengjingwen/web/CookieUtil.class -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-eurekaserver 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | 4 | com.chengjingwen 5 | chengjingwen-shopping-parent 6 | 0.0.1-SNAPSHOT 7 | 8 | chengjingwen-shopping-eurekaserver 9 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/src/main/java/com/chengjingwen/app/EurekaServer.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.app; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer; 6 | 7 | /** 8 | * springcloud服务注册中心 9 | * @author tangc 10 | * 11 | */ 12 | @SpringBootApplication 13 | @EnableEurekaServer 14 | public class EurekaServer { 15 | public static void main(String[] args) { 16 | SpringApplication.run(EurekaServer.class, args); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8761 3 | eureka: 4 | instance: 5 | hostname: localhost 6 | client: 7 | registerWithEureka: false 8 | fetchRegistry: false 9 | serviceUrl: 10 | defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ 11 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/chengjingwen-shopping-eurekaserver-0.0.1-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-eurekaserver/target/chengjingwen-shopping-eurekaserver-0.0.1-SNAPSHOT.jar -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/chengjingwen-shopping-eurekaserver-0.0.1-SNAPSHOT.jar.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-eurekaserver/target/chengjingwen-shopping-eurekaserver-0.0.1-SNAPSHOT.jar.original -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-eurekaserver 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-eurekaserver/ 9 | Created-By: Maven Integration for Eclipse 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-eurekaserver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jan 30 15:56:29 EST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.chengjingwen 5 | m2e.projectName=chengjingwen-shopping-eurekaserver 6 | m2e.projectLocation=C\:\\Users\\tangc\\eclipse-project\\chengjingwen-shopping-parent\\chengjingwen-shopping-eurekaserver 7 | artifactId=chengjingwen-shopping-eurekaserver 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-eurekaserver/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 4.0.0 3 | 4 | com.chengjingwen 5 | chengjingwen-shopping-parent 6 | 0.0.1-SNAPSHOT 7 | 8 | chengjingwen-shopping-eurekaserver 9 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8761 3 | eureka: 4 | instance: 5 | hostname: localhost 6 | client: 7 | registerWithEureka: false 8 | fetchRegistry: false 9 | serviceUrl: 10 | defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/ 11 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/classes/com/chengjingwen/app/EurekaServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-eurekaserver/target/classes/com/chengjingwen/app/EurekaServer.class -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Apache Maven 2 | #Fri Jan 26 16:23:46 EST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.chengjingwen 5 | artifactId=chengjingwen-shopping-eurekaserver 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-eurekaserver/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | C:\Users\tangc\eclipse-project\chengjingwen-shopping-parent\chengjingwen-shopping-eurekaserver\src\main\java\com\chengjingwen\app\EurekaServer.java 2 | -------------------------------------------------------------------------------- /chengjingwen-shopping-eurekaserver/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-eurekaserver/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /chengjingwen-shopping-member/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-member 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.chengjingwen 6 | chengjingwen-shopping-parent 7 | 0.0.1-SNAPSHOT 8 | 9 | chengjingwen-shopping-member 10 | 11 | 12 | 13 | 14 | com.chengjingwen 15 | chengjingwen-shopping-member-api 16 | 0.0.1-SNAPSHOT 17 | 18 | 19 | 20 | com.chengjingwen 21 | chengjingwen-shopping-common 22 | 0.0.1-SNAPSHOT 23 | 24 | 25 | 26 | org.mybatis.spring.boot 27 | mybatis-spring-boot-starter 28 | 1.3.0 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/src/main/java/com/chengjingwen/MemberServer.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen; 2 | 3 | 4 | import org.springframework.boot.SpringApplication; 5 | 6 | import org.springframework.boot.autoconfigure.SpringBootApplication; 7 | import org.springframework.cloud.netflix.eureka.EnableEurekaClient; 8 | 9 | /** 10 | * member系统启动类 11 | * @author tangc 12 | * 13 | */ 14 | @SpringBootApplication 15 | @EnableEurekaClient 16 | public class MemberServer { 17 | 18 | public static void main(String[] args) { 19 | SpringApplication.run(MemberServer.class, args); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/src/main/java/com/chengjingwen/manage/UserServiceManage.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.manage; 2 | 3 | import java.util.Map; 4 | 5 | 6 | 7 | import com.chengjingwen.entity.UserEntity; 8 | 9 | 10 | public interface UserServiceManage { 11 | /** 12 | * 注册服务 13 | * @param userEntity 14 | */ 15 | public void regist(UserEntity userEntity); 16 | 17 | /** 18 | * 加盐加密 19 | * @param phone 20 | * @param password 21 | * @return 22 | */ 23 | public String md5PassSalt(String phone, String password); 24 | 25 | /** 26 | * 登录 27 | * @param userEntity 28 | */ 29 | public Map login(UserEntity userEntity); 30 | 31 | /** 32 | * 通过token查找用户信息 33 | * @param token 34 | * @return 35 | */ 36 | public Map getUser(String token); 37 | 38 | public Map userLoginOpenID(String openid); 39 | } 40 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/src/main/java/com/chengjingwen/mq/producer/RegisterMailboxProducer.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.mq.producer; 2 | 3 | import javax.jms.Destination; 4 | 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.jms.core.JmsMessagingTemplate; 7 | import org.springframework.stereotype.Service; 8 | 9 | /** 10 | * 往消息服务推送邮件信息 11 | * @author tangc 12 | * 13 | */ 14 | 15 | @Service 16 | public class RegisterMailboxProducer { 17 | 18 | @Autowired 19 | private JmsMessagingTemplate jmsMessagingTemplate; 20 | 21 | public void send(Destination destination, String json) { 22 | jmsMessagingTemplate.convertAndSend(destination, json); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-member 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-member/ 9 | Created-By: Maven Integration for Eclipse 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-member/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jan 30 15:56:33 EST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.chengjingwen 5 | m2e.projectName=chengjingwen-shopping-member 6 | m2e.projectLocation=C\:\\Users\\tangc\\eclipse-project\\chengjingwen-shopping-parent\\chengjingwen-shopping-member 7 | artifactId=chengjingwen-shopping-member 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-member/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.chengjingwen 6 | chengjingwen-shopping-parent 7 | 0.0.1-SNAPSHOT 8 | 9 | chengjingwen-shopping-member 10 | 11 | 12 | 13 | 14 | com.chengjingwen 15 | chengjingwen-shopping-member-api 16 | 0.0.1-SNAPSHOT 17 | 18 | 19 | 20 | com.chengjingwen 21 | chengjingwen-shopping-common 22 | 0.0.1-SNAPSHOT 23 | 24 | 25 | 26 | org.mybatis.spring.boot 27 | mybatis-spring-boot-starter 28 | 1.3.0 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/com/chengjingwen/MemberServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-member/target/classes/com/chengjingwen/MemberServer.class -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/com/chengjingwen/api/service/impl/DemoApiServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-member/target/classes/com/chengjingwen/api/service/impl/DemoApiServiceImpl.class -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/com/chengjingwen/api/service/impl/UserServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-member/target/classes/com/chengjingwen/api/service/impl/UserServiceImpl.class -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/com/chengjingwen/dao/UserDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-member/target/classes/com/chengjingwen/dao/UserDao.class -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/com/chengjingwen/manage/UserServiceManage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-member/target/classes/com/chengjingwen/manage/UserServiceManage.class -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/com/chengjingwen/manage/impl/UserServiceManageImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-member/target/classes/com/chengjingwen/manage/impl/UserServiceManageImpl.class -------------------------------------------------------------------------------- /chengjingwen-shopping-member/target/classes/com/chengjingwen/mq/producer/RegisterMailboxProducer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-member/target/classes/com/chengjingwen/mq/producer/RegisterMailboxProducer.class -------------------------------------------------------------------------------- /chengjingwen-shopping-message/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-message 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.chengjingwen 6 | chengjingwen-shopping-parent 7 | 0.0.1-SNAPSHOT 8 | 9 | chengjingwen-shopping-message 10 | 11 | 12 | 13 | com.chengjingwen 14 | chengjingwen-shopping-common 15 | 0.0.1-SNAPSHOT 16 | 17 | 18 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/src/main/java/com/chengjingwen/MessageServer.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.netflix.eureka.EnableEurekaClient; 6 | 7 | @SpringBootApplication 8 | @EnableEurekaClient 9 | public class MessageServer { 10 | public static void main(String[] args) { 11 | 12 | SpringApplication.run(MessageServer.class, args); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/src/main/java/com/chengjingwen/adapter/MessageAdapter.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.adapter; 2 | 3 | import com.alibaba.fastjson.JSONObject; 4 | 5 | /** 6 | * 所有消息都会交给它进行转发 7 | * @author tangc 8 | * 9 | */ 10 | public interface MessageAdapter { 11 | //接收消息 12 | public void distribute(JSONObject jsonObject); 13 | } 14 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8763 3 | context-path: /message 4 | eureka: 5 | client: 6 | serviceUrl: 7 | defaultZone: http://localhost:8761/eureka/ 8 | spring: 9 | application: 10 | name: message 11 | activemq: 12 | broker-url: tcp://localhost:61616 13 | in-memory: true 14 | pool: 15 | enabled: false 16 | mail: 17 | host: smtp.163.com 18 | username: yushengjun644064@163.com 19 | password: itmayiedu644 20 | enable: true 21 | smtp: 22 | auth: true 23 | starttls: 24 | enable: true 25 | required: true 26 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-message 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-message/ 9 | Created-By: Maven Integration for Eclipse 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-message/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jan 30 15:56:34 EST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.chengjingwen 5 | m2e.projectName=chengjingwen-shopping-message 6 | m2e.projectLocation=C\:\\Users\\tangc\\eclipse-project\\chengjingwen-shopping-parent\\chengjingwen-shopping-message 7 | artifactId=chengjingwen-shopping-message 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-message/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.chengjingwen 6 | chengjingwen-shopping-parent 7 | 0.0.1-SNAPSHOT 8 | 9 | chengjingwen-shopping-message 10 | 11 | 12 | 13 | com.chengjingwen 14 | chengjingwen-shopping-common 15 | 0.0.1-SNAPSHOT 16 | 17 | 18 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8763 3 | context-path: /message 4 | eureka: 5 | client: 6 | serviceUrl: 7 | defaultZone: http://localhost:8761/eureka/ 8 | spring: 9 | application: 10 | name: message 11 | activemq: 12 | broker-url: tcp://localhost:61616 13 | in-memory: true 14 | pool: 15 | enabled: false 16 | mail: 17 | host: smtp.163.com 18 | username: yushengjun644064@163.com 19 | password: itmayiedu644 20 | enable: true 21 | smtp: 22 | auth: true 23 | starttls: 24 | enable: true 25 | required: true 26 | -------------------------------------------------------------------------------- /chengjingwen-shopping-message/target/classes/com/chengjingwen/MessageServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-message/target/classes/com/chengjingwen/MessageServer.class -------------------------------------------------------------------------------- /chengjingwen-shopping-message/target/classes/com/chengjingwen/adapter/MessageAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-message/target/classes/com/chengjingwen/adapter/MessageAdapter.class -------------------------------------------------------------------------------- /chengjingwen-shopping-message/target/classes/com/chengjingwen/mq/distribute/ConsumerDistribute.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-message/target/classes/com/chengjingwen/mq/distribute/ConsumerDistribute.class -------------------------------------------------------------------------------- /chengjingwen-shopping-message/target/classes/com/chengjingwen/service/SMSMailboxService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-message/target/classes/com/chengjingwen/service/SMSMailboxService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-mobile-web 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/main/resources/templates/associatedAccount.ftl=UTF-8 5 | encoding//src/main/resources/templates/common/bottom.ftl=UTF-8 6 | encoding//src/main/resources/templates/index.ftl=UTF-8 7 | encoding//src/main/resources/templates/login.ftl=UTF-8 8 | encoding//src/main/resources/templates/regist.ftl=UTF-8 9 | encoding//src/test/java=UTF-8 10 | encoding//src/test/resources=UTF-8 11 | encoding/=UTF-8 12 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/java/com/chengjingwen/AppMobile.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.netflix.eureka.EnableEurekaClient; 6 | import org.springframework.cloud.netflix.feign.EnableFeignClients; 7 | 8 | @SpringBootApplication 9 | @EnableEurekaClient 10 | @EnableFeignClients 11 | public class AppMobile { 12 | public static void main(String[] args) { 13 | SpringApplication.run(AppMobile.class, args); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/java/com/chengjingwen/controller/DemoController.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.controller; 2 | 3 | import javax.servlet.http.HttpServletRequest; 4 | 5 | import org.springframework.stereotype.Controller; 6 | import org.springframework.web.bind.annotation.RequestMapping; 7 | 8 | import com.chengjingwen.base.controller.BaseController; 9 | 10 | import lombok.extern.slf4j.Slf4j; 11 | 12 | @Slf4j 13 | @Controller 14 | public class DemoController extends BaseController{ 15 | 16 | public static final String INDEX = "index"; 17 | 18 | @RequestMapping("/index") 19 | public String index(HttpServletRequest req) { 20 | log.info("我的web工程搭建成功了!"); 21 | return INDEX; 22 | } 23 | 24 | 25 | 26 | } 27 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/java/com/chengjingwen/feign/UserFeign.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.feign; 2 | 3 | import java.util.Map; 4 | 5 | import org.springframework.cloud.netflix.feign.FeignClient; 6 | 7 | import com.chengjingwen.api.service.UserService; 8 | 9 | /** 10 | * 调用eureka中的member服务 11 | * @author tangc 12 | * 13 | */ 14 | 15 | @FeignClient("member") 16 | public interface UserFeign extends UserService { 17 | // 18 | // /** 19 | // * 使用token查找用户信息 20 | // * @param token 21 | // * @return 22 | // */ 23 | // @PostMapping("/member/getUser") 24 | // public Map getUser(@RequestParam("token") String token); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8764 3 | context-path: /mobile 4 | eureka: 5 | client: 6 | serviceUrl: 7 | defaultZone: http://localhost:8761/eureka/ 8 | spring: 9 | freemarker: 10 | suffix: .ftl 11 | templateEncoding: UTF-8 12 | templateLoaderPath: classpath:/templates/ 13 | application: 14 | name: mobile 15 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/qqconnectconfig.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/qqconnectconfig.properties -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/README.md: -------------------------------------------------------------------------------- 1 | # xiaomi_mobile 2 | 仿小米移动端商城 3 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/css/common.css: -------------------------------------------------------------------------------- 1 | /* 2 | ** 共用CSS文件 3 | */ 4 | 5 | *{ 6 | margin: 0; 7 | padding: 0; 8 | } 9 | html{ 10 | word-wrap: break-word; 11 | } 12 | body{ 13 | font-size: 20px; 14 | background-color: #f4f4f4; 15 | min-width: 300px; 16 | } 17 | html, body, .wrapper{ 18 | height: 100%; 19 | } 20 | a, input, textarea{ 21 | text-decoration: none; 22 | outline: 0; 23 | } 24 | ol, ul{ 25 | list-style: none; 26 | } 27 | li, img, label, input{ 28 | vertical-align: middle; 29 | } 30 | /*图标字体*/ 31 | @font-face{ 32 | font-family:iconfont; 33 | src:url(../fonts/iconfont1.eot?9owfml); 34 | src:url(../fonts/iconfont1.eot?#iefix9owfml) format("embedded-opentype"),url(../fonts/iconfont2.woff?9owfml) format("woff"),url(../fonts/iconfont3.ttf?9owfml) format("truetype"),url(../fonts/iconfont4.svg?9owfml#icomoon) format("svg"); 35 | font-weight:400; 36 | font-style:normal 37 | } 38 | /* 以icon-开头,包含icon-的class */ 39 | [class^=icon-],[class*="icon-"],.iconfont{ 40 | font-family: iconfont !important; 41 | speak: none; 42 | font-style: normal; 43 | font-weight: 400; 44 | font-variant: normal; 45 | text-transform: none; 46 | line-height: 1; 47 | -webkit-font-smoothing: antialiased; 48 | -moz-osx-font-smoothing: grayscale; 49 | } -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/fonts/iconfont1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/fonts/iconfont1.eot -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/fonts/iconfont2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/fonts/iconfont2.woff -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/fonts/iconfont3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/fonts/iconfont3.ttf -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/1.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/2.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/3.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/4.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/5.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/6.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T13yAgBvZT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T13yAgBvZT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T19OV_BgKT1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T19OV_BgKT1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1DhbvBsbv1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1DhbvBsbv1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1NKV_BvZT1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1NKV_BvZT1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1QtxTBvET1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1QtxTBvET1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1QtxTBvET1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1QtxTBvET1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1Z0b_BgWv1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1Z0b_BgWv1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1ggWQBybT1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1ggWQBybT1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1ltWvBCxv1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1ltWvBCxv1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1wLDTBbxT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1wLDTBbxT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1zFxvB7xT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/T1zFxvB7xT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSbihaoshuigai!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSbihaoshuigai!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_01!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_01!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_02!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_02!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_03!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_03!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_04!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_04!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_05!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_05!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_06!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_06!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_07!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_07!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_09!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/TDSjiancebi_09!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/b5-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/b5-0.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/banner1.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/banner2.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/cart.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/close.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/loadingClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/loadingClose.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/logo.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/order1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/order1.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/order2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/order2.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/images/sign_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/src/main/resources/static/images/sign_icon.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/static/js/ready.js: -------------------------------------------------------------------------------- 1 | /* 2 | ** 实现reday方法 3 | */ 4 | document.ready = function (callback){ 5 | ///兼容FF,Google 6 | if (document.addEventListener) { 7 | document.addEventListener('DOMContentLoaded', function () { 8 | document.removeEventListener('DOMContentLoaded', arguments.callee, false); 9 | callback(); 10 | }, false) 11 | } 12 | //兼容IE 13 | else if (document.attachEvent) { 14 | document.attachEvent('onreadytstatechange', function () { 15 | if (document.readyState == "complete") { 16 | document.detachEvent("onreadystatechange", arguments.callee); 17 | callback(); 18 | } 19 | }) 20 | } 21 | else if (document.lastChild == document.body) { 22 | callback(); 23 | } 24 | } -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/templates/common/bottom.ftl: -------------------------------------------------------------------------------- 1 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/src/main/resources/templates/common/error.ftl: -------------------------------------------------------------------------------- 1 | 系统错误! -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-mobile-web 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-mobile-web/ 9 | Created-By: Maven Integration for Eclipse 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-mobile-web/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jan 30 15:56:37 EST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.chengjingwen 5 | m2e.projectName=chengjingwen-shopping-mobile-web 6 | m2e.projectLocation=C\:\\Users\\tangc\\eclipse-project\\chengjingwen-shopping-parent\\chengjingwen-shopping-mobile-web 7 | artifactId=chengjingwen-shopping-mobile-web 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8764 3 | context-path: /mobile 4 | eureka: 5 | client: 6 | serviceUrl: 7 | defaultZone: http://localhost:8761/eureka/ 8 | spring: 9 | freemarker: 10 | suffix: .ftl 11 | templateEncoding: UTF-8 12 | templateLoaderPath: classpath:/templates/ 13 | application: 14 | name: mobile 15 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/AppMobile.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/AppMobile.class -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/base/controller/BaseController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/base/controller/BaseController.class -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/controller/DemoController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/controller/DemoController.class -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/controller/LoginController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/controller/LoginController.class -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/controller/RegistContoroller.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/controller/RegistContoroller.class -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/feign/UserFeign.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/com/chengjingwen/feign/UserFeign.class -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/qqconnectconfig.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/qqconnectconfig.properties -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/README.md: -------------------------------------------------------------------------------- 1 | # xiaomi_mobile 2 | 仿小米移动端商城 3 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/css/common.css: -------------------------------------------------------------------------------- 1 | /* 2 | ** 共用CSS文件 3 | */ 4 | 5 | *{ 6 | margin: 0; 7 | padding: 0; 8 | } 9 | html{ 10 | word-wrap: break-word; 11 | } 12 | body{ 13 | font-size: 20px; 14 | background-color: #f4f4f4; 15 | min-width: 300px; 16 | } 17 | html, body, .wrapper{ 18 | height: 100%; 19 | } 20 | a, input, textarea{ 21 | text-decoration: none; 22 | outline: 0; 23 | } 24 | ol, ul{ 25 | list-style: none; 26 | } 27 | li, img, label, input{ 28 | vertical-align: middle; 29 | } 30 | /*图标字体*/ 31 | @font-face{ 32 | font-family:iconfont; 33 | src:url(../fonts/iconfont1.eot?9owfml); 34 | src:url(../fonts/iconfont1.eot?#iefix9owfml) format("embedded-opentype"),url(../fonts/iconfont2.woff?9owfml) format("woff"),url(../fonts/iconfont3.ttf?9owfml) format("truetype"),url(../fonts/iconfont4.svg?9owfml#icomoon) format("svg"); 35 | font-weight:400; 36 | font-style:normal 37 | } 38 | /* 以icon-开头,包含icon-的class */ 39 | [class^=icon-],[class*="icon-"],.iconfont{ 40 | font-family: iconfont !important; 41 | speak: none; 42 | font-style: normal; 43 | font-weight: 400; 44 | font-variant: normal; 45 | text-transform: none; 46 | line-height: 1; 47 | -webkit-font-smoothing: antialiased; 48 | -moz-osx-font-smoothing: grayscale; 49 | } -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/fonts/iconfont1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/fonts/iconfont1.eot -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/fonts/iconfont2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/fonts/iconfont2.woff -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/fonts/iconfont3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/fonts/iconfont3.ttf -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/1.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/2.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/3.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/4.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/5.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/6.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T13yAgBvZT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T13yAgBvZT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T19OV_BgKT1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T19OV_BgKT1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T1DhbvBsbv1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T1DhbvBsbv1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T1NKV_BvZT1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T1NKV_BvZT1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T1QtxTBvET1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T1QtxTBvET1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T1QtxTBvET1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T1QtxTBvET1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T1Z0b_BgWv1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T1Z0b_BgWv1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T1ggWQBybT1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T1ggWQBybT1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T1ltWvBCxv1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T1ltWvBCxv1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T1wLDTBbxT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T1wLDTBbxT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/T1zFxvB7xT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/T1zFxvB7xT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/TDSbihaoshuigai!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/TDSbihaoshuigai!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_01!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_01!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_02!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_02!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_03!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_03!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_04!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_04!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_05!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_05!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_06!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_06!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_07!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_07!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_09!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/TDSjiancebi_09!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/b5-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/b5-0.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/banner1.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/banner2.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/cart.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/close.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/loadingClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/loadingClose.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/logo.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/order1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/order1.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/order2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/order2.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/images/sign_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-mobile-web/target/classes/static/images/sign_icon.png -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/static/js/ready.js: -------------------------------------------------------------------------------- 1 | /* 2 | ** 实现reday方法 3 | */ 4 | document.ready = function (callback){ 5 | ///兼容FF,Google 6 | if (document.addEventListener) { 7 | document.addEventListener('DOMContentLoaded', function () { 8 | document.removeEventListener('DOMContentLoaded', arguments.callee, false); 9 | callback(); 10 | }, false) 11 | } 12 | //兼容IE 13 | else if (document.attachEvent) { 14 | document.attachEvent('onreadytstatechange', function () { 15 | if (document.readyState == "complete") { 16 | document.detachEvent("onreadystatechange", arguments.callee); 17 | callback(); 18 | } 19 | }) 20 | } 21 | else if (document.lastChild == document.body) { 22 | callback(); 23 | } 24 | } -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/templates/common/bottom.ftl: -------------------------------------------------------------------------------- 1 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /chengjingwen-shopping-mobile-web/target/classes/templates/common/error.ftl: -------------------------------------------------------------------------------- 1 | 系统错误! -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-pay-web 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/main/resources/acp_sdk.properties=UTF-8 5 | encoding//src/main/resources/log4j.properties=UTF-8 6 | encoding//src/main/resources/templates/pay_fail.ftl=UTF-8 7 | encoding//src/main/resources/templates/pay_success.ftl=UTF-8 8 | encoding//src/test/java=UTF-8 9 | encoding//src/test/resources=UTF-8 10 | encoding/=UTF-8 11 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/java/com/chengjingwen/AppPayWeb.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.netflix.eureka.EnableEurekaClient; 6 | import org.springframework.cloud.netflix.feign.EnableFeignClients; 7 | 8 | @SpringBootApplication 9 | @EnableEurekaClient 10 | @EnableFeignClients 11 | public class AppPayWeb { 12 | public static void main(String[] args) { 13 | SpringApplication.run(AppPayWeb.class, args); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/java/com/chengjingwen/base/controller/BaseController.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.base.controller; 2 | 3 | import javax.servlet.http.HttpServletRequest; 4 | 5 | import com.chengjingwen.common.api.BaseApiService; 6 | 7 | public class BaseController extends BaseApiService{ 8 | 9 | public static final String ERROR = "common/error"; 10 | 11 | public String setError(HttpServletRequest req, String msg, String address) { 12 | req.setAttribute("error", msg); 13 | return address; 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/java/com/chengjingwen/feign/PaymentInfoFeign.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.feign; 2 | 3 | import org.springframework.cloud.netflix.feign.FeignClient; 4 | import com.chengjingwen.service.PaymentInfoService; 5 | 6 | @FeignClient("pay-service") 7 | public interface PaymentInfoFeign extends PaymentInfoService{ 8 | 9 | } 10 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/java/com/chengjingwen/feign/PaymentTypeFeign.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.feign; 2 | 3 | import org.springframework.cloud.netflix.feign.FeignClient; 4 | 5 | import com.chengjingwen.service.PaymentTypeService; 6 | 7 | @FeignClient("pay-service") 8 | public interface PaymentTypeFeign extends PaymentTypeService { 9 | 10 | } 11 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/java/com/chengjingwen/load/AutoLoadRunner.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.load; 2 | 3 | import org.springframework.boot.CommandLineRunner; 4 | import org.springframework.stereotype.Component; 5 | 6 | import com.unionpay.acp.sdk.SDKConfig; 7 | 8 | @Component 9 | public class AutoLoadRunner implements CommandLineRunner { 10 | 11 | @Override 12 | public void run(String... args) throws Exception { 13 | SDKConfig.getConfig().loadPropertiesFromSrc(); 14 | System.out.println(">>>>>>>>>>>>>>>服务启动执行,执行加载数据等操作<<<<<<<<<<<<<"); 15 | } 16 | 17 | } 18 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/java/com/chengjingwen/pay/service/CallbackService.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.pay.service; 2 | 3 | 4 | import java.util.Map; 5 | 6 | import javax.servlet.http.HttpServletRequest; 7 | 8 | /** 9 | * 支付回调服务接口 10 | * @author tangc 11 | * 12 | */ 13 | public interface CallbackService { 14 | /** 15 | * 同步回调 16 | * 17 | * @return 18 | */ 19 | public Map syn(HttpServletRequest request); 20 | 21 | /** 22 | * 异步回调 23 | * 24 | * @return 25 | */ 26 | public String asyn(HttpServletRequest request); 27 | } 28 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/java/com/chengjingwen/pay/service/PayAdaptService.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.pay.service; 2 | 3 | import com.chengjingwen.entity.PaymentInfo; 4 | import com.chengjingwen.entity.PaymentType; 5 | 6 | 7 | /** 8 | * 支付类型适配器 9 | * @author tangc 10 | * 11 | */ 12 | public interface PayAdaptService { 13 | public String pay(PaymentInfo paymentInfo,PaymentType paymentType ); 14 | } 15 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/java/com/chengjingwen/pay/service/PayService.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.pay.service; 2 | 3 | import org.springframework.stereotype.Service; 4 | 5 | import com.chengjingwen.entity.PaymentInfo; 6 | 7 | 8 | @Service 9 | public interface PayService { 10 | 11 | public String pay(PaymentInfo paymentInfo); 12 | 13 | } 14 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8768 3 | context-path: /pay-web 4 | eureka: 5 | client: 6 | serviceUrl: 7 | defaultZone: http://localhost:8761/eureka/ 8 | spring: 9 | application: 10 | name: pay-web -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/css/common.css: -------------------------------------------------------------------------------- 1 | /* 2 | ** 共用CSS文件 3 | */ 4 | 5 | *{ 6 | margin: 0; 7 | padding: 0; 8 | } 9 | html{ 10 | word-wrap: break-word; 11 | } 12 | body{ 13 | font-size: 20px; 14 | background-color: #f4f4f4; 15 | min-width: 300px; 16 | } 17 | html, body, .wrapper{ 18 | height: 100%; 19 | } 20 | a, input, textarea{ 21 | text-decoration: none; 22 | outline: 0; 23 | } 24 | ol, ul{ 25 | list-style: none; 26 | } 27 | li, img, label, input{ 28 | vertical-align: middle; 29 | } 30 | /*图标字体*/ 31 | @font-face{ 32 | font-family:iconfont; 33 | src:url(../fonts/iconfont1.eot?9owfml); 34 | src:url(../fonts/iconfont1.eot?#iefix9owfml) format("embedded-opentype"),url(../fonts/iconfont2.woff?9owfml) format("woff"),url(../fonts/iconfont3.ttf?9owfml) format("truetype"),url(../fonts/iconfont4.svg?9owfml#icomoon) format("svg"); 35 | font-weight:400; 36 | font-style:normal 37 | } 38 | /* 以icon-开头,包含icon-的class */ 39 | [class^=icon-],[class*="icon-"],.iconfont{ 40 | font-family: iconfont !important; 41 | speak: none; 42 | font-style: normal; 43 | font-weight: 400; 44 | font-variant: normal; 45 | text-transform: none; 46 | line-height: 1; 47 | -webkit-font-smoothing: antialiased; 48 | -moz-osx-font-smoothing: grayscale; 49 | } -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/fonts/iconfont1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/fonts/iconfont1.eot -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/fonts/iconfont2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/fonts/iconfont2.woff -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/fonts/iconfont3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/fonts/iconfont3.ttf -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/1.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/2.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/3.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/4.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/5.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/6.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T13yAgBvZT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T13yAgBvZT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T19OV_BgKT1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T19OV_BgKT1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T1DhbvBsbv1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T1DhbvBsbv1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T1NKV_BvZT1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T1NKV_BvZT1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T1QtxTBvET1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T1QtxTBvET1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T1QtxTBvET1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T1QtxTBvET1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T1Z0b_BgWv1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T1Z0b_BgWv1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T1ggWQBybT1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T1ggWQBybT1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T1ltWvBCxv1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T1ltWvBCxv1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T1wLDTBbxT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T1wLDTBbxT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/T1zFxvB7xT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/T1zFxvB7xT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSbihaoshuigai!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSbihaoshuigai!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_01!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_01!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_02!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_02!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_03!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_03!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_04!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_04!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_05!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_05!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_06!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_06!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_07!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_07!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_09!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/TDSjiancebi_09!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/b5-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/b5-0.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/banner1.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/banner2.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/cart.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/close.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/loadingClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/loadingClose.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/logo.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/order1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/order1.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/order2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/order2.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/images/sign_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/src/main/resources/static/images/sign_icon.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/src/main/resources/static/js/ready.js: -------------------------------------------------------------------------------- 1 | /* 2 | ** 实现reday方法 3 | */ 4 | document.ready = function (callback){ 5 | ///兼容FF,Google 6 | if (document.addEventListener) { 7 | document.addEventListener('DOMContentLoaded', function () { 8 | document.removeEventListener('DOMContentLoaded', arguments.callee, false); 9 | callback(); 10 | }, false) 11 | } 12 | //兼容IE 13 | else if (document.attachEvent) { 14 | document.attachEvent('onreadytstatechange', function () { 15 | if (document.readyState == "complete") { 16 | document.detachEvent("onreadystatechange", arguments.callee); 17 | callback(); 18 | } 19 | }) 20 | } 21 | else if (document.lastChild == document.body) { 22 | callback(); 23 | } 24 | } -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-pay-web 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-pay-web/ 9 | Created-By: Maven Integration for Eclipse 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-pay-web/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jan 30 15:56:49 EST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.chengjingwen 5 | m2e.projectName=chengjingwen-shopping-pay-web 6 | m2e.projectLocation=C\:\\Users\\tangc\\eclipse-project\\chengjingwen-shopping-parent\\chengjingwen-shopping-pay-web 7 | artifactId=chengjingwen-shopping-pay-web 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8768 3 | context-path: /pay-web 4 | eureka: 5 | client: 6 | serviceUrl: 7 | defaultZone: http://localhost:8761/eureka/ 8 | spring: 9 | application: 10 | name: pay-web -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/AppPayWeb.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/AppPayWeb.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/base/controller/BaseController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/base/controller/BaseController.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/controller/PayController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/controller/PayController.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/controller/callback/YinLianCallbackController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/controller/callback/YinLianCallbackController.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/feign/PaymentInfoFeign.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/feign/PaymentInfoFeign.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/feign/PaymentTypeFeign.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/feign/PaymentTypeFeign.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/load/AutoLoadRunner.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/load/AutoLoadRunner.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/CallbackService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/CallbackService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/PayAdaptService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/PayAdaptService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/PayService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/PayService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/impl/PayServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/impl/PayServiceImpl.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/impl/YinLianPay.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/impl/YinLianPay.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/impl/YinlianCallbackServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/chengjingwen/pay/service/impl/YinlianCallbackServiceImpl.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/AcpService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/AcpService.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/BaseHttpSSLSocketFactory$MyX509TrustManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/BaseHttpSSLSocketFactory$MyX509TrustManager.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/BaseHttpSSLSocketFactory$TrustAnyHostnameVerifier.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/BaseHttpSSLSocketFactory$TrustAnyHostnameVerifier.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/BaseHttpSSLSocketFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/BaseHttpSSLSocketFactory.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/CertUtil$CerFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/CertUtil$CerFilter.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/CertUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/CertUtil.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/DemoBase.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/DemoBase.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/HttpClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/HttpClient.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/LogUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/LogUtil.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/SDKConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/SDKConfig.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/SDKConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/SDKConstants.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/SDKUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/SDKUtil.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/SecureUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/com/unionpay/acp/sdk/SecureUtil.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/css/common.css: -------------------------------------------------------------------------------- 1 | /* 2 | ** 共用CSS文件 3 | */ 4 | 5 | *{ 6 | margin: 0; 7 | padding: 0; 8 | } 9 | html{ 10 | word-wrap: break-word; 11 | } 12 | body{ 13 | font-size: 20px; 14 | background-color: #f4f4f4; 15 | min-width: 300px; 16 | } 17 | html, body, .wrapper{ 18 | height: 100%; 19 | } 20 | a, input, textarea{ 21 | text-decoration: none; 22 | outline: 0; 23 | } 24 | ol, ul{ 25 | list-style: none; 26 | } 27 | li, img, label, input{ 28 | vertical-align: middle; 29 | } 30 | /*图标字体*/ 31 | @font-face{ 32 | font-family:iconfont; 33 | src:url(../fonts/iconfont1.eot?9owfml); 34 | src:url(../fonts/iconfont1.eot?#iefix9owfml) format("embedded-opentype"),url(../fonts/iconfont2.woff?9owfml) format("woff"),url(../fonts/iconfont3.ttf?9owfml) format("truetype"),url(../fonts/iconfont4.svg?9owfml#icomoon) format("svg"); 35 | font-weight:400; 36 | font-style:normal 37 | } 38 | /* 以icon-开头,包含icon-的class */ 39 | [class^=icon-],[class*="icon-"],.iconfont{ 40 | font-family: iconfont !important; 41 | speak: none; 42 | font-style: normal; 43 | font-weight: 400; 44 | font-variant: normal; 45 | text-transform: none; 46 | line-height: 1; 47 | -webkit-font-smoothing: antialiased; 48 | -moz-osx-font-smoothing: grayscale; 49 | } -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/fonts/iconfont1.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/fonts/iconfont1.eot -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/fonts/iconfont2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/fonts/iconfont2.woff -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/fonts/iconfont3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/fonts/iconfont3.ttf -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/1.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/2.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/3.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/4.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/5.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/6.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T13yAgBvZT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T13yAgBvZT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T19OV_BgKT1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T19OV_BgKT1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T1DhbvBsbv1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T1DhbvBsbv1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T1NKV_BvZT1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T1NKV_BvZT1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T1QtxTBvET1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T1QtxTBvET1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T1QtxTBvET1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T1QtxTBvET1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T1Z0b_BgWv1RXrhCrK!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T1Z0b_BgWv1RXrhCrK!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T1ggWQBybT1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T1ggWQBybT1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T1ltWvBCxv1RXrhCrK!180x180.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T1ltWvBCxv1RXrhCrK!180x180.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T1wLDTBbxT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T1wLDTBbxT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/T1zFxvB7xT1RXrhCrK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/T1zFxvB7xT1RXrhCrK.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/TDSbihaoshuigai!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/TDSbihaoshuigai!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_01!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_01!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_02!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_02!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_03!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_03!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_04!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_04!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_05!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_05!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_06!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_06!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_07!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_07!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_09!720x720.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/TDSjiancebi_09!720x720.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/b5-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/b5-0.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/banner1.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/banner2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/banner2.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/cart.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/close.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/loadingClose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/loadingClose.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/logo.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/order1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/order1.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/order2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/order2.jpg -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/images/sign_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay-web/target/classes/static/images/sign_icon.png -------------------------------------------------------------------------------- /chengjingwen-shopping-pay-web/target/classes/static/js/ready.js: -------------------------------------------------------------------------------- 1 | /* 2 | ** 实现reday方法 3 | */ 4 | document.ready = function (callback){ 5 | ///兼容FF,Google 6 | if (document.addEventListener) { 7 | document.addEventListener('DOMContentLoaded', function () { 8 | document.removeEventListener('DOMContentLoaded', arguments.callee, false); 9 | callback(); 10 | }, false) 11 | } 12 | //兼容IE 13 | else if (document.attachEvent) { 14 | document.attachEvent('onreadytstatechange', function () { 15 | if (document.readyState == "complete") { 16 | document.detachEvent("onreadystatechange", arguments.callee); 17 | callback(); 18 | } 19 | }) 20 | } 21 | else if (document.lastChild == document.body) { 22 | callback(); 23 | } 24 | } -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | chengjingwen-shopping-pay 4 | 5 | 6 | 7 | 8 | 9 | org.eclipse.wst.common.project.facet.core.builder 10 | 11 | 12 | 13 | 14 | org.eclipse.jdt.core.javabuilder 15 | 16 | 17 | 18 | 19 | org.springframework.ide.eclipse.core.springbuilder 20 | 21 | 22 | 23 | 24 | org.eclipse.m2e.core.maven2Builder 25 | 26 | 27 | 28 | 29 | 30 | org.springframework.ide.eclipse.core.springnature 31 | org.eclipse.jdt.core.javanature 32 | org.eclipse.m2e.core.maven2Nature 33 | org.eclipse.wst.common.project.facet.core.nature 34 | 35 | 36 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//src/main/java=UTF-8 3 | encoding//src/main/resources=UTF-8 4 | encoding//src/test/java=UTF-8 5 | encoding//src/test/resources=UTF-8 6 | encoding/=UTF-8 7 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 3 | org.eclipse.jdt.core.compiler.compliance=1.8 4 | org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning 5 | org.eclipse.jdt.core.compiler.source=1.8 6 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- 1 | activeProfiles= 2 | eclipse.preferences.version=1 3 | resolveWorkspaceProjects=true 4 | version=1 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.chengjingwen 6 | chengjingwen-shopping-parent 7 | 0.0.1-SNAPSHOT 8 | 9 | chengjingwen-shopping-pay 10 | 11 | 12 | 13 | com.chengjingwen 14 | chengjingwen-shopping-pay-api 15 | 0.0.1-SNAPSHOT 16 | 17 | 18 | 19 | org.mybatis.spring.boot 20 | mybatis-spring-boot-starter 21 | 1.3.0 22 | 23 | 24 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/src/main/java/com/chengjingwen/PayServer.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | import org.springframework.cloud.netflix.eureka.EnableEurekaClient; 6 | 7 | @SpringBootApplication 8 | @EnableEurekaClient 9 | public class PayServer { 10 | 11 | public static void main(String[] args) { 12 | SpringApplication.run(PayServer.class, args); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/src/main/java/com/chengjingwen/dao/PaymentTypeDao.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.dao; 2 | 3 | import org.apache.ibatis.annotations.Mapper; 4 | 5 | import org.apache.ibatis.annotations.Select; 6 | import org.springframework.data.repository.query.Param; 7 | 8 | import com.chengjingwen.entity.PaymentType; 9 | 10 | @Mapper 11 | public interface PaymentTypeDao { 12 | 13 | @Select("select * from payment_type where id = #{id}") 14 | public PaymentType getPaymentType(@Param("id") Long id); 15 | 16 | } 17 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/src/main/java/com/chengjingwen/service/impl/PaymentTypeServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.chengjingwen.service.impl; 2 | 3 | import java.util.Map; 4 | 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.stereotype.Service; 7 | import org.springframework.web.bind.annotation.RequestMapping; 8 | import org.springframework.web.bind.annotation.RequestParam; 9 | import org.springframework.web.bind.annotation.RestController; 10 | 11 | import com.chengjingwen.common.api.BaseApiService; 12 | import com.chengjingwen.dao.PaymentTypeDao; 13 | import com.chengjingwen.entity.PaymentType; 14 | import com.chengjingwen.service.PaymentTypeService; 15 | 16 | @Service 17 | @RestController 18 | @RequestMapping("/pay") 19 | public class PaymentTypeServiceImpl extends BaseApiService implements PaymentTypeService { 20 | @Autowired 21 | private PaymentTypeDao paymentTypeDao; 22 | 23 | @RequestMapping("/getPaymentType") 24 | public Map getPaymentType(@RequestParam("id") Long id) { 25 | PaymentType paymentType = paymentTypeDao.getPaymentType(id); 26 | if (paymentType == null) { 27 | return setResultError("未查找到类型"); 28 | } 29 | return setResultSuccessData(paymentType); 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/target/classes/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Implementation-Title: chengjingwen-shopping-pay 3 | Implementation-Version: 0.0.1-SNAPSHOT 4 | Built-By: tangc 5 | Implementation-Vendor-Id: com.chengjingwen 6 | Build-Jdk: 1.8.0_111 7 | Implementation-URL: http://projects.spring.io/spring-boot/chengjingwen 8 | -shopping-parent/chengjingwen-shopping-pay/ 9 | Created-By: Maven Integration for Eclipse 10 | Implementation-Vendor: Pivotal Software, Inc. 11 | 12 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-pay/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven Integration for Eclipse 2 | #Tue Jan 30 15:56:47 EST 2018 3 | version=0.0.1-SNAPSHOT 4 | groupId=com.chengjingwen 5 | m2e.projectName=chengjingwen-shopping-pay 6 | m2e.projectLocation=C\:\\Users\\tangc\\eclipse-project\\chengjingwen-shopping-parent\\chengjingwen-shopping-pay 7 | artifactId=chengjingwen-shopping-pay 8 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/target/classes/META-INF/maven/com.chengjingwen/chengjingwen-shopping-pay/pom.xml: -------------------------------------------------------------------------------- 1 | 3 | 4.0.0 4 | 5 | com.chengjingwen 6 | chengjingwen-shopping-parent 7 | 0.0.1-SNAPSHOT 8 | 9 | chengjingwen-shopping-pay 10 | 11 | 12 | 13 | com.chengjingwen 14 | chengjingwen-shopping-pay-api 15 | 0.0.1-SNAPSHOT 16 | 17 | 18 | 19 | org.mybatis.spring.boot 20 | mybatis-spring-boot-starter 21 | 1.3.0 22 | 23 | 24 | -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/target/classes/com/chengjingwen/PayServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay/target/classes/com/chengjingwen/PayServer.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/target/classes/com/chengjingwen/dao/PaymentInfoDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay/target/classes/com/chengjingwen/dao/PaymentInfoDao.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/target/classes/com/chengjingwen/dao/PaymentTypeDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay/target/classes/com/chengjingwen/dao/PaymentTypeDao.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/target/classes/com/chengjingwen/service/impl/PaymentInfoServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay/target/classes/com/chengjingwen/service/impl/PaymentInfoServiceImpl.class -------------------------------------------------------------------------------- /chengjingwen-shopping-pay/target/classes/com/chengjingwen/service/impl/PaymentTypeServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangchengjingwen/MicroserviceShoppingProject_using-springcloud-springboot/2bbf488940bd6affda18b13a3c90200fbbecace4/chengjingwen-shopping-pay/target/classes/com/chengjingwen/service/impl/PaymentTypeServiceImpl.class --------------------------------------------------------------------------------