在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 【微信APP支付】Java后台源码 项目采用SpringBoot框架 可直接运行.rar

【微信APP支付】Java后台源码 项目采用SpringBoot框架 可直接运行.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:75.63M
  • 下载次数:14
  • 浏览次数:67
  • 发布时间:2021-11-20
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
项目采用SpringBoot框架,可直接运行,更改WxPayConfig文件appid、mch_id、key、notify_url即可完成APP支付及回调功能。包含统一下单(支付接口)即WeixinController中pay方法、支付结果通知(回调接口)即WeixinController中notify方法
【实例截图】
【核心代码】
a384bab5132a1a66349ab0e13a65a532.rar
└── springboot
├── logs
│   ├── boot.log
│   └── spring-boot-logging.log
├── mvnw
├── mvnw.cmd
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   └── com
│   │   │   └── example
│   │   │   ├── api
│   │   │   │   └── WeixinController.java
│   │   │   ├── BootApplication.java
│   │   │   ├── controller
│   │   │   │   └── EidControl.java
│   │   │   ├── dao
│   │   │   │   └── EidMapper.java
│   │   │   ├── dto
│   │   │   │   ├── Menu.java
│   │   │   │   ├── Role.java
│   │   │   │   └── User.java
│   │   │   ├── service
│   │   │   │   └── EidServiceImpl.java
│   │   │   ├── ServletInitializer.java
│   │   │   ├── utils
│   │   │   │   ├── Base64Util.java
│   │   │   │   ├── CJ.java
│   │   │   │   ├── CommonTool.java
│   │   │   │   ├── Demo.java
│   │   │   │   ├── IpUtils.java
│   │   │   │   ├── MyDES.java
│   │   │   │   ├── ServletUtils.java
│   │   │   │   ├── StringUtils.java
│   │   │   │   └── weixin
│   │   │   │   ├── config
│   │   │   │   │   └── WxPayConfig.java
│   │   │   │   ├── PayUtil.java
│   │   │   │   └── vo
│   │   │   │   ├── ApiTicket.java
│   │   │   │   └── OAuthJsToken.java
│   │   │   └── vo
│   │   │   └── Json.java
│   │   ├── resources
│   │   │   ├── application.properties
│   │   │   ├── ehcache.xml
│   │   │   ├── log4j2.xml
│   │   │   ├── mapper
│   │   │   │   └── EidMapper.xml
│   │   │   └── templates
│   │   └── webapp
│   │   ├── static
│   │   │   └── asset
│   │   │   ├── css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── bootstrap-reset.css
│   │   │   │   ├── fileUpload.css
│   │   │   │   ├── iconfont.css
│   │   │   │   ├── page.css
│   │   │   │   └── style.css
│   │   │   ├── DatePicker
│   │   │   │   ├── calendar.js
│   │   │   │   ├── lang
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh-tw.js
│   │   │   │   ├── skin
│   │   │   │   │   ├── datePicker.gif
│   │   │   │   │   ├── default
│   │   │   │   │   │   ├── datepicker.css
│   │   │   │   │   │   └── img.gif
│   │   │   │   │   ├── WdatePicker.css
│   │   │   │   │   └── whyGreen
│   │   │   │   │   ├── bg.jpg
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   └── img.gif
│   │   │   │   ├── WdatePicker.js
│   │   │   │   └── 开发包
│   │   │   │   ├── lang
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh-tw.js
│   │   │   │   ├── readme.txt
│   │   │   │   └── skin
│   │   │   │   ├── datePicker.gif
│   │   │   │   ├── default
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   └── img.gif
│   │   │   │   ├── WdatePicker.css
│   │   │   │   └── whyGreen
│   │   │   │   ├── bg.jpg
│   │   │   │   ├── datepicker.css
│   │   │   │   └── img.gif
│   │   │   ├── image
│   │   │   │   └── 1.jpg
│   │   │   ├── images
│   │   │   │   ├── btn01.png
│   │   │   │   ├── btn02.png
│   │   │   │   ├── btn03.png
│   │   │   │   ├── circle0.png
│   │   │   │   ├── circle1.png
│   │   │   │   ├── close1.png
│   │   │   │   ├── close2.png
│   │   │   │   ├── date.png
│   │   │   │   ├── del_btn.png
│   │   │   │   ├── dq.png
│   │   │   │   ├── file_btn.png
│   │   │   │   ├── green.png
│   │   │   │   ├── icon001.png
│   │   │   │   ├── icon002.png
│   │   │   │   ├── icon003.png
│   │   │   │   ├── icon004.png
│   │   │   │   ├── icon005.png
│   │   │   │   ├── icon006.png
│   │   │   │   ├── icon007.png
│   │   │   │   ├── icon008.png
│   │   │   │   ├── icon009.png
│   │   │   │   ├── icon010.png
│   │   │   │   ├── icon020.png
│   │   │   │   ├── icon030.png
│   │   │   │   ├── icon040.png
│   │   │   │   ├── icon041.png
│   │   │   │   ├── icon042.png
│   │   │   │   ├── index01.png
│   │   │   │   ├── index02.png
│   │   │   │   ├── index03.png
│   │   │   │   ├── index04.png
│   │   │   │   ├── index21.png
│   │   │   │   ├── index22.png
│   │   │   │   ├── index24.png
│   │   │   │   ├── jcbg.png
│   │   │   │   ├── Keywork.png
│   │   │   │   ├── logo.jpg
│   │   │   │   ├── Meeting.png
│   │   │   │   ├── Office.png
│   │   │   │   ├── pm_li.png
│   │   │   │   ├── pm.png
│   │   │   │   ├── point.png
│   │   │   │   ├── red.png
│   │   │   │   ├── upload_btn.png
│   │   │   │   ├── user01.png
│   │   │   │   ├── user02.png
│   │   │   │   ├── user03.png
│   │   │   │   └── yu.png
│   │   │   ├── js
│   │   │   │   ├── ajaxfileupload.js
│   │   │   │   ├── barrage.js
│   │   │   │   ├── bootstrap-paginator.js
│   │   │   │   ├── content
│   │   │   │   │   ├── action.js
│   │   │   │   │   ├── base.js
│   │   │   │   │   ├── jqueryValidator.js
│   │   │   │   │   └── list.js
│   │   │   │   ├── fileUpload.js
│   │   │   │   ├── host2.js
│   │   │   │   ├── host.js
│   │   │   │   ├── html5shiv.js
│   │   │   │   ├── jquery-1.11.3.js
│   │   │   │   ├── jquery-1.8.2.js
│   │   │   │   ├── jquery-1.8.3.js
│   │   │   │   ├── jquery.js
│   │   │   │   ├── jquery.mCustomScrollbar.concat.min.js
│   │   │   │   ├── jquery.SuperSlide.2.1.1.js
│   │   │   │   ├── redischarts
│   │   │   │   │   ├── highcharts.js
│   │   │   │   │   └── index.js
│   │   │   │   ├── respond.js
│   │   │   │   ├── sweetalert
│   │   │   │   │   └── sweetalert.min.js
│   │   │   │   ├── system.js
│   │   │   │   ├── t_io
│   │   │   │   │   ├── action.js
│   │   │   │   │   ├── bytebuffer-min.js
│   │   │   │   │   ├── chat.proto
│   │   │   │   │   ├── im.js
│   │   │   │   │   ├── protobuf-min.js
│   │   │   │   │   └── talen.js
│   │   │   │   └── validator-0.7.3
│   │   │   │   ├── images
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   ├── validator_default.png
│   │   │   │   │   └── validator_simple.png
│   │   │   │   ├── jquery.validator.css
│   │   │   │   ├── jquery.validator.js
│   │   │   │   ├── LICENSE.txt
│   │   │   │   ├── local
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── ja.js
│   │   │   │   │   ├── zh_CN.js
│   │   │   │   │   └── zh_TW.js
│   │   │   │   ├── niceValidator.jquery.json
│   │   │   │   ├── package.json
│   │   │   │   └── README.md
│   │   │   └── scrollbar
│   │   │   ├── bower.json
│   │   │   ├── examples
│   │   │   │   ├── ajax_example.html
│   │   │   │   ├── ajax.html
│   │   │   │   ├── auto_hide_scrollbar_demo.html
│   │   │   │   ├── auto_scrolling_example.html
│   │   │   │   ├── bootstrap_examples-extended.html
│   │   │   │   ├── bootstrap_examples.html
│   │   │   │   ├── callbacks_example.html
│   │   │   │   ├── colorbox
│   │   │   │   │   ├── colorbox.css
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── border.png
│   │   │   │   │   │   ├── controls.png
│   │   │   │   │   │   ├── loading_background.png
│   │   │   │   │   │   ├── loading.gif
│   │   │   │   │   │   └── overlay.png
│   │   │   │   │   └── jquery.colorbox-min.js
│   │   │   │   ├── colorbox_demo.html
│   │   │   │   ├── complete_examples.html
│   │   │   │   ├── disable_destroy_example.html
│   │   │   │   ├── fluid_scrollbar_example.html
│   │   │   │   ├── full_page_demo.html
│   │   │   │   ├── grid_and_snap_while_scrolling_example.html
│   │   │   │   ├── iframe_example.html
│   │   │   │   ├── images
│   │   │   │   │   ├── img1.jpg
│   │   │   │   │   ├── img2.jpg
│   │   │   │   │   ├── img3.jpg
│   │   │   │   │   ├── img4.jpg
│   │   │   │   │   ├── img5.jpg
│   │   │   │   │   ├── img6.jpg
│   │   │   │   │   └── img7.jpg
│   │   │   │   ├── infinite_scroll_example.html
│   │   │   │   ├── init_hidden_example.html
│   │   │   │   ├── init_position_example.html
│   │   │   │   ├── jquery_ui_accordion_example.html
│   │   │   │   ├── jquery_ui_autocomplete_example.html
│   │   │   │   ├── jquery_ui_dialog_example.html
│   │   │   │   ├── jquery_ui_resizable_example.html
│   │   │   │   ├── jquery_ui_sortable_example.html
│   │   │   │   ├── jquery_ui_tabs_example.html
│   │   │   │   ├── keyboard_nav_example.html
│   │   │   │   ├── loading_each_script_separately.html
│   │   │   │   ├── loading_each_script_separately_via_cdn.html
│   │   │   │   ├── loading_scripts_via_cdn.html
│   │   │   │   ├── logo-alt.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── max-height_example.html
│   │   │   │   ├── max-width_example.html
│   │   │   │   ├── multiple_scrollbars_example.html
│   │   │   │   ├── nested_scrollbars_demo_alt_2.html
│   │   │   │   ├── nested_scrollbars_demo_alt.html
│   │   │   │   ├── nested_scrollbars_demo.html
│   │   │   │   ├── rtl_direction_demo.html
│   │   │   │   ├── scrollbar_themes_demo.html
│   │   │   │   ├── scroll_buttons_and_snap_scrolling_examples.html
│   │   │   │   ├── scrollTo_demo.html
│   │   │   │   ├── simple_example_all_params.html
│   │   │   │   ├── simple_example.html
│   │   │   │   ├── style.css
│   │   │   │   └── textarea_example.html
│   │   │   ├── jquery.mCustomScrollbar.concat.min.js
│   │   │   ├── jquery.mCustomScrollbar.css
│   │   │   ├── jquery.mCustomScrollbar.js
│   │   │   ├── jquery.mCustomScrollbar.min.css
│   │   │   ├── js
│   │   │   │   ├── minified
│   │   │   │   │   ├── jquery-1.11.0.min.js
│   │   │   │   │   ├── jquery-1.9.1.min.js
│   │   │   │   │   ├── jquery-2.1.0.min.js
│   │   │   │   │   ├── jquery.mCustomScrollbar.min.js
│   │   │   │   │   ├── jquery.mCustomScrollbar.min.js.gz
│   │   │   │   │   ├── jquery.mousewheel-3.0.6.min.js
│   │   │   │   │   ├── jquery.mousewheel.min.js
│   │   │   │   │   └── jquery-ui-1.10.4.min.js
│   │   │   │   └── uncompressed
│   │   │   │   ├── jquery.mCustomScrollbar.js
│   │   │   │   ├── jquery.mousewheel-3.0.6.js
│   │   │   │   └── jquery.mousewheel.js
│   │   │   ├── LICENSE.txt
│   │   │   ├── mCSB_buttons.png
│   │   │   ├── package.json
│   │   │   └── readme.md
│   │   └── WEB-INF
│   └── test
│   └── java
│   └── com
│   └── example
│   └── BootApplicationTests.java
└── target
├── boot
│   ├── jsp
│   │   ├── index.jsp
│   │   └── login.jsp
│   ├── META-INF
│   ├── static
│   │   └── asset
│   │   ├── css
│   │   │   ├── bootstrap.min.css
│   │   │   ├── bootstrap-reset.css
│   │   │   ├── fileUpload.css
│   │   │   ├── iconfont.css
│   │   │   ├── page.css
│   │   │   └── style.css
│   │   ├── DatePicker
│   │   │   ├── calendar.js
│   │   │   ├── lang
│   │   │   │   ├── en.js
│   │   │   │   ├── zh-cn.js
│   │   │   │   └── zh-tw.js
│   │   │   ├── skin
│   │   │   │   ├── datePicker.gif
│   │   │   │   ├── default
│   │   │   │   │   ├── datepicker.css
│   │   │   │   │   └── img.gif
│   │   │   │   ├── WdatePicker.css
│   │   │   │   └── whyGreen
│   │   │   │   ├── bg.jpg
│   │   │   │   ├── datepicker.css
│   │   │   │   └── img.gif
│   │   │   ├── WdatePicker.js
│   │   │   └── 开发包
│   │   │   ├── lang
│   │   │   │   ├── en.js
│   │   │   │   ├── zh-cn.js
│   │   │   │   └── zh-tw.js
│   │   │   ├── readme.txt
│   │   │   └── skin
│   │   │   ├── datePicker.gif
│   │   │   ├── default
│   │   │   │   ├── datepicker.css
│   │   │   │   └── img.gif
│   │   │   ├── WdatePicker.css
│   │   │   └── whyGreen
│   │   │   ├── bg.jpg
│   │   │   ├── datepicker.css
│   │   │   └── img.gif
│   │   ├── image
│   │   │   └── 1.jpg
│   │   ├── images
│   │   │   ├── btn01.png
│   │   │   ├── btn02.png
│   │   │   ├── btn03.png
│   │   │   ├── circle0.png
│   │   │   ├── circle1.png
│   │   │   ├── close1.png
│   │   │   ├── close2.png
│   │   │   ├── date.png
│   │   │   ├── del_btn.png
│   │   │   ├── dq.png
│   │   │   ├── file_btn.png
│   │   │   ├── green.png
│   │   │   ├── icon001.png
│   │   │   ├── icon002.png
│   │   │   ├── icon003.png
│   │   │   ├── icon004.png
│   │   │   ├── icon005.png
│   │   │   ├── icon006.png
│   │   │   ├── icon007.png
│   │   │   ├── icon008.png
│   │   │   ├── icon009.png
│   │   │   ├── icon010.png
│   │   │   ├── icon020.png
│   │   │   ├── icon030.png
│   │   │   ├── icon040.png
│   │   │   ├── icon041.png
│   │   │   ├── icon042.png
│   │   │   ├── index01.png
│   │   │   ├── index02.png
│   │   │   ├── index03.png
│   │   │   ├── index04.png
│   │   │   ├── index21.png
│   │   │   ├── index22.png
│   │   │   ├── index24.png
│   │   │   ├── jcbg.png
│   │   │   ├── Keywork.png
│   │   │   ├── logo.jpg
│   │   │   ├── Meeting.png
│   │   │   ├── Office.png
│   │   │   ├── pm_li.png
│   │   │   ├── pm.png
│   │   │   ├── point.png
│   │   │   ├── red.png
│   │   │   ├── upload_btn.png
│   │   │   ├── user01.png
│   │   │   ├── user02.png
│   │   │   ├── user03.png
│   │   │   └── yu.png
│   │   ├── js
│   │   │   ├── ajaxfileupload.js
│   │   │   ├── barrage.js
│   │   │   ├── bootstrap-paginator.js
│   │   │   ├── content
│   │   │   │   ├── action.js
│   │   │   │   ├── base.js
│   │   │   │   ├── jqueryValidator.js
│   │   │   │   └── list.js
│   │   │   ├── fileUpload.js
│   │   │   ├── host2.js
│   │   │   ├── host.js
│   │   │   ├── html5shiv.js
│   │   │   ├── jquery-1.11.3.js
│   │   │   ├── jquery-1.8.2.js
│   │   │   ├── jquery-1.8.3.js
│   │   │   ├── jquery.js
│   │   │   ├── jquery.mCustomScrollbar.concat.min.js
│   │   │   ├── jquery.SuperSlide.2.1.1.js
│   │   │   ├── redischarts
│   │   │   │   ├── highcharts.js
│   │   │   │   └── index.js
│   │   │   ├── respond.js
│   │   │   ├── sweetalert
│   │   │   │   └── sweetalert.min.js
│   │   │   ├── system.js
│   │   │   ├── t_io
│   │   │   │   ├── action.js
│   │   │   │   ├── bytebuffer-min.js
│   │   │   │   ├── chat.proto
│   │   │   │   ├── im.js
│   │   │   │   ├── protobuf-min.js
│   │   │   │   └── talen.js
│   │   │   └── validator-0.7.3
│   │   │   ├── images
│   │   │   │   ├── loading.gif
│   │   │   │   ├── validator_default.png
│   │   │   │   └── validator_simple.png
│   │   │   ├── jquery.validator.css
│   │   │   ├── jquery.validator.js
│   │   │   ├── LICENSE.txt
│   │   │   ├── local
│   │   │   │   ├── en.js
│   │   │   │   ├── ja.js
│   │   │   │   ├── zh_CN.js
│   │   │   │   └── zh_TW.js
│   │   │   ├── niceValidator.jquery.json
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   └── scrollbar
│   │   ├── bower.json
│   │   ├── examples
│   │   │   ├── ajax_example.html
│   │   │   ├── ajax.html
│   │   │   ├── auto_hide_scrollbar_demo.html
│   │   │   ├── auto_scrolling_example.html
│   │   │   ├── bootstrap_examples-extended.html
│   │   │   ├── bootstrap_examples.html
│   │   │   ├── callbacks_example.html
│   │   │   ├── colorbox
│   │   │   │   ├── colorbox.css
│   │   │   │   ├── images
│   │   │   │   │   ├── border.png
│   │   │   │   │   ├── controls.png
│   │   │   │   │   ├── loading_background.png
│   │   │   │   │   ├── loading.gif
│   │   │   │   │   └── overlay.png
│   │   │   │   └── jquery.colorbox-min.js
│   │   │   ├── colorbox_demo.html
│   │   │   ├── complete_examples.html
│   │   │   ├── disable_destroy_example.html
│   │   │   ├── fluid_scrollbar_example.html
│   │   │   ├── full_page_demo.html
│   │   │   ├── grid_and_snap_while_scrolling_example.html
│   │   │   ├── iframe_example.html
│   │   │   ├── images
│   │   │   │   ├── img1.jpg
│   │   │   │   ├── img2.jpg
│   │   │   │   ├── img3.jpg
│   │   │   │   ├── img4.jpg
│   │   │   │   ├── img5.jpg
│   │   │   │   ├── img6.jpg
│   │   │   │   └── img7.jpg
│   │   │   ├── infinite_scroll_example.html
│   │   │   ├── init_hidden_example.html
│   │   │   ├── init_position_example.html
│   │   │   ├── jquery_ui_accordion_example.html
│   │   │   ├── jquery_ui_autocomplete_example.html
│   │   │   ├── jquery_ui_dialog_example.html
│   │   │   ├── jquery_ui_resizable_example.html
│   │   │   ├── jquery_ui_sortable_example.html
│   │   │   ├── jquery_ui_tabs_example.html
│   │   │   ├── keyboard_nav_example.html
│   │   │   ├── loading_each_script_separately.html
│   │   │   ├── loading_each_script_separately_via_cdn.html
│   │   │   ├── loading_scripts_via_cdn.html
│   │   │   ├── logo-alt.png
│   │   │   ├── logo.png
│   │   │   ├── max-height_example.html
│   │   │   ├── max-width_example.html
│   │   │   ├── multiple_scrollbars_example.html
│   │   │   ├── nested_scrollbars_demo_alt_2.html
│   │   │   ├── nested_scrollbars_demo_alt.html
│   │   │   ├── nested_scrollbars_demo.html
│   │   │   ├── rtl_direction_demo.html
│   │   │   ├── scrollbar_themes_demo.html
│   │   │   ├── scroll_buttons_and_snap_scrolling_examples.html
│   │   │   ├── scrollTo_demo.html
│   │   │   ├── simple_example_all_params.html
│   │   │   ├── simple_example.html
│   │   │   ├── style.css
│   │   │   └── textarea_example.html
│   │   ├── jquery.mCustomScrollbar.concat.min.js
│   │   ├── jquery.mCustomScrollbar.css
│   │   ├── jquery.mCustomScrollbar.js
│   │   ├── jquery.mCustomScrollbar.min.css
│   │   ├── js
│   │   │   ├── minified
│   │   │   │   ├── jquery-1.11.0.min.js
│   │   │   │   ├── jquery-1.9.1.min.js
│   │   │   │   ├── jquery-2.1.0.min.js
│   │   │   │   ├── jquery.mCustomScrollbar.min.js
│   │   │   │   ├── jquery.mCustomScrollbar.min.js.gz
│   │   │   │   ├── jquery.mousewheel-3.0.6.min.js
│   │   │   │   ├── jquery.mousewheel.min.js
│   │   │   │   └── jquery-ui-1.10.4.min.js
│   │   │   └── uncompressed
│   │   │   ├── jquery.mCustomScrollbar.js
│   │   │   ├── jquery.mousewheel-3.0.6.js
│   │   │   └── jquery.mousewheel.js
│   │   ├── LICENSE.txt
│   │   ├── mCSB_buttons.png
│   │   ├── package.json
│   │   └── readme.md
│   └── WEB-INF
│   ├── classes
│   │   ├── application.properties
│   │   ├── com
│   │   │   └── example
│   │   │   ├── api
│   │   │   │   └── WeixinController.class
│   │   │   ├── BootApplication.class
│   │   │   ├── controller
│   │   │   │   └── EidControl.class
│   │   │   ├── dao
│   │   │   │   └── EidMapper.class
│   │   │   ├── dto
│   │   │   │   ├── Menu.class
│   │   │   │   ├── Role.class
│   │   │   │   └── User.class
│   │   │   ├── service
│   │   │   │   └── EidServiceImpl.class
│   │   │   ├── ServletInitializer.class
│   │   │   ├── utils
│   │   │   │   ├── Base64Util.class
│   │   │   │   ├── CJ.class
│   │   │   │   ├── CommonTool.class
│   │   │   │   ├── Demo.class
│   │   │   │   ├── IpUtils.class
│   │   │   │   ├── MyDES.class
│   │   │   │   ├── ServletUtils.class
│   │   │   │   ├── StringUtils.class
│   │   │   │   └── weixin
│   │   │   │   ├── config
│   │   │   │   │   └── WxPayConfig.class
│   │   │   │   ├── PayUtil.class
│   │   │   │   └── vo
│   │   │   │   ├── ApiTicket.class
│   │   │   │   └── OAuthJsToken.class
│   │   │   └── vo
│   │   │   └── Json.class
│   │   ├── ehcache.xml
│   │   ├── log4j2.xml
│   │   └── mapper
│   │   └── EidMapper.xml
│   └── lib
│   ├── bcprov-jdk16-1.46.jar
│   ├── classmate-1.3.4.jar
│   ├── commons-beanutils-1.8.0.jar
│   ├── commons-codec-1.6.jar
│   ├── commons-collections-3.2.1.jar
│   ├── commons-lang-2.5.jar
│   ├── commons-lang3-3.4.jar
│   ├── commons-logging-1.1.1.jar
│   ├── druid-1.0.11.jar
│   ├── ehcache-core-2.5.0.jar
│   ├── eID.SDK.Service-froad-0.1.jar
│   ├── ezmorph-1.0.6.jar
│   ├── fastjson-1.2.12.jar
│   ├── hibernate-validator-5.3.6.Final.jar
│   ├── jackson-annotations-2.8.0.jar
│   ├── jackson-core-2.8.11.jar
│   ├── jackson-databind-2.8.11.1.jar
│   ├── jackson-datatype-joda-2.8.11.jar
│   ├── jackson-module-parameter-names-2.8.11.jar
│   ├── jboss-logging-3.3.2.Final.jar
│   ├── jcl-over-slf4j-1.7.25.jar
│   ├── jdom-1.0.jar
│   ├── joda-time-2.9.9.jar
│   ├── json-lib-2.4-jdk15.jar
│   ├── jstl-1.2.jar
│   ├── jul-to-slf4j-1.7.25.jar
│   ├── log4j-over-slf4j-1.7.25.jar
│   ├── logback-classic-1.1.11.jar
│   ├── logback-core-1.1.11.jar
│   ├── mybatis-3.4.0.jar
│   ├── mybatis-spring-1.3.0.jar
│   ├── mybatis-spring-boot-autoconfigure-1.1.1.jar
│   ├── mybatis-spring-boot-starter-1.1.1.jar
│   ├── mysql-connector-java-5.1.46.jar
│   ├── shiro-core-1.2.5.jar
│   ├── shiro-ehcache-1.2.5.jar
│   ├── shiro-spring-1.2.5.jar
│   ├── shiro-web-1.2.5.jar
│   ├── slf4j-api-1.7.25.jar
│   ├── snakeyaml-1.17.jar
│   ├── spring-aop-4.3.16.RELEASE.jar
│   ├── spring-beans-4.3.16.RELEASE.jar
│   ├── spring-boot-1.5.12.RELEASE.jar
│   ├── spring-boot-autoconfigure-1.5.12.RELEASE.jar
│   ├── spring-boot-starter-1.5.12.RELEASE.jar
│   ├── spring-boot-starter-jdbc-1.5.12.RELEASE.jar
│   ├── spring-boot-starter-logging-1.5.12.RELEASE.jar
│   ├── spring-boot-starter-web-1.5.12.RELEASE.jar
│   ├── spring-context-4.3.16.RELEASE.jar
│   ├── spring-core-4.3.16.RELEASE.jar
│   ├── spring-expression-4.3.16.RELEASE.jar
│   ├── spring-jdbc-4.3.16.RELEASE.jar
│   ├── spring-tx-4.3.16.RELEASE.jar
│   ├── spring-web-4.3.16.RELEASE.jar
│   ├── spring-webmvc-4.3.16.RELEASE.jar
│   ├── tomcat-jdbc-8.5.29.jar
│   ├── tomcat-juli-8.5.29.jar
│   ├── validation-api-1.1.0.Final.jar
│   └── weixin4j-0.0.9.1.jar
├── boot.war
├── boot.war.original
├── classes
│   ├── application.properties
│   ├── com
│   │   └── example
│   │   ├── api
│   │   │   └── WeixinController.class
│   │   ├── BootApplication.class
│   │   ├── controller
│   │   │   └── EidControl.class
│   │   ├── dao
│   │   │   └── EidMapper.class
│   │   ├── dto
│   │   │   ├── Menu.class
│   │   │   ├── Role.class
│   │   │   └── User.class
│   │   ├── service
│   │   │   └── EidServiceImpl.class
│   │   ├── ServletInitializer.class
│   │   ├── utils
│   │   │   ├── Base64Util.class
│   │   │   ├── CJ.class
│   │   │   ├── CommonTool.class
│   │   │   ├── Demo.class
│   │   │   ├── IpUtils.class
│   │   │   ├── MyDES.class
│   │   │   ├── ServletUtils.class
│   │   │   ├── StringUtils.class
│   │   │   └── weixin
│   │   │   ├── config
│   │   │   │   └── WxPayConfig.class
│   │   │   ├── PayUtil.class
│   │   │   └── vo
│   │   │   ├── ApiTicket.class
│   │   │   └── OAuthJsToken.class
│   │   └── vo
│   │   └── Json.class
│   ├── ehcache.xml
│   ├── log4j2.xml
│   └── mapper
│   └── EidMapper.xml
├── generated-sources
│   └── annotations
├── generated-test-sources
│   └── test-annotations
├── m2e-wtp
│   └── web-resources
│   └── META-INF
│   ├── MANIFEST.MF
│   └── maven
│   └── com.example
│   └── boot
│   ├── pom.properties
│   └── pom.xml
├── maven-archiver
│   └── pom.properties
├── maven-status
│   └── maven-compiler-plugin
│   ├── compile
│   │   └── default-compile
│   │   ├── createdFiles.lst
│   │   └── inputFiles.lst
│   └── testCompile
│   └── default-testCompile
│   ├── createdFiles.lst
│   └── inputFiles.lst
├── surefire-reports
│   ├── com.example.BootApplicationTests.txt
│   └── TEST-com.example.BootApplicationTests.xml
└── test-classes
└── com
└── example
└── BootApplicationTests.class

143 directories, 550 files

标签:

实例下载地址

【微信APP支付】Java后台源码 项目采用SpringBoot框架 可直接运行.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警