René's URL Explorer Experiment


Title: GitHub - java-ora/WeixinMultiPlatform: weixin-mp-java 基于Java,Spring,Maven实现的微信公众平台一整套代码,从前端Controller到后端的Dao的实现
============== 1.0.1 2013-1月更新: 支持上传下载多媒体文件 支持接收消息(语音似乎总有问题,同时收到来自微信两个服务器的空的POST的请求,论坛上也有很多人反映此情况) 支持用户管理 支持自定义菜单CRD 支持推广支持接口 强化测试代码 优化代码结构,增加WxMessageHandlerIfc, 只要实现该接口的所有spring bean在收到消息后都会被自动调用. ============== 实现功能:消息接口,通用接口和菜单接口(没有内测号无法测试)
============== 由于涉及的框架比较杂乱,在此一一解释:
1. 简便实用的前置条件:
你的项目是基于Spring,Maven,Hibernate架构;
你的项目至少有一个已经存在的配置文件;
需要在配置文件(例子:application.properties)中添加
wx_token=your_token
wx_appid=asdf
wx_appsecret=secret
没有在线的Maven仓库,强烈建议clone代码到本地作为子工程使用;
2. 如果你是通过spring-annotation配置bean的话,那么只要在你的Spring xml配置文件里加入以下两句便可:
<context:component-scan base-package="com.hamster.weixinmp" />
<util:properties id="wxProperties" location="classpath:/application.properties"/>
如果没有util的话,在beans xml声明中加入:
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="…..
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd"
在org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean的packageToScan中添加org.hamster.weixinmp.dao 3. 如果不想用数据库,那么只扫描com.hamster.weixinmp.service和com.hamster.weixinmp.controller即可,所有的dao在wxService中配置模式均为可选,如果没有注入,则不会执行存储操作;
4. 项目使用了lombok生成Getter/Setter, toString, hashCode, equals方法,lombok有eclipse插件,具体怎么安装请看这里:http://projectlombok.org/download.html,如果不想用lombok的话那么就手动删掉那些注解并用eclipse等工具重新生成一下这些方法便可。
5. 如果你的项目是通过xml的方式配置的话,你需要将所有的dao,service和controller配置到xml中(浩大的工程= =)
6. 数据库的前缀为wx_,一般来说不会有冲突,真冲突了那就自己手动改改吧,反正也不麻烦
7. 数据库有些额外的字段,比如自增长的id,created_date等,用不到就无视吧
8. 如果你不用maven的话……那就把java代码都拷贝到自己的工程里面去吧……

Open Graph Title: GitHub - java-ora/WeixinMultiPlatform: weixin-mp-java 基于Java,Spring,Maven实现的微信公众平台一整套代码,从前端Controller到后端的Dao的实现
============== 1.0.1 2013-1月更新: 支持上传下载多媒体文件 支持接收消息(语音似乎总有问题,同时收到来自微信两个服务器的空的POST的请求,论坛上也有很多人反映此情况) 支持用户管理 支持自定义菜单CRD 支持推广支持接口 强化测试代码 优化代码结构,增加WxMessageHandlerIfc, 只要实现该接口的所有spring bean在收到消息后都会被自动调用. ============== 实现功能:消息接口,通用接口和菜单接口(没有内测号无法测试)
============== 由于涉及的框架比较杂乱,在此一一解释:
1. 简便实用的前置条件:
你的项目是基于Spring,Maven,Hibernate架构;
你的项目至少有一个已经存在的配置文件;
需要在配置文件(例子:application.properties)中添加
wx_token=your_token
wx_appid=asdf
wx_appsecret=secret
没有在线的Maven仓库,强烈建议clone代码到本地作为子工程使用;
2. 如果你是通过spring-annotation配置bean的话,那么只要在你的Spring xml配置文件里加入以下两句便可:
<context:component-scan base-package="com.hamster.weixinmp" />
<util:properties id="wxProperties" location="classpath:/application.properties"/>
如果没有util的话,在beans xml声明中加入:
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="…..
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd"
在org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean的packageToScan中添加org.hamster.weixinmp.dao 3. 如果不想用数据库,那么只扫描com.hamster.weixinmp.service和com.hamster.weixinmp.controller即可,所有的dao在wxService中配置模式均为可选,如果没有注入,则不会执行存储操作;
4. 项目使用了lombok生成Getter/Setter, toString, hashCode, equals方法,lombok有eclipse插件,具体怎么安装请看这里:http://projectlombok.org/download.html,如果不想用lombok的话那么就手动删掉那些注解并用eclipse等工具重新生成一下这些方法便可。
5. 如果你的项目是通过xml的方式配置的话,你需要将所有的dao,service和controller配置到xml中(浩大的工程= =)
6. 数据库的前缀为wx_,一般来说不会有冲突,真冲突了那就自己手动改改吧,反正也不麻烦
7. 数据库有些额外的字段,比如自增长的id,created_date等,用不到就无视吧
8. 如果你不用maven的话……那就把java代码都拷贝到自己的工程里面去吧……

X Title: GitHub - java-ora/WeixinMultiPlatform: weixin-mp-java 基于Java,Spring,Maven实现的微信公众平台一整套代码,从前端Controller到后端的Dao的实现
============== 1.0.1 2013-1月更新: 支持上传下载多媒体文件 支持接收消息(语音似乎总有问题,同时收到来自微信两个服务器的空的POST的请求,论坛上也有很多人反映此情况) 支持用户管理 支持自定义菜单CRD 支持推广支持接口 强化测试代码 优化代码结构,增加WxMessageHandlerIfc, 只要实现该接口的所有spring bean在收到消息后都会被自动调用. ============== 实现功能:消息接口,通用接口和菜单接口(没有内测号无法测试)
============== 由于涉及的框架比较杂乱,在此一一解释:
1. 简便实用的前置条件:
你的项目是基于Spring,Maven,Hibernate架构;
你的项目至少有一个已经存在的配置文件;
需要在配置文件(例子:application.properties)中添加
wx_token=your_token
wx_appid=asdf
wx_appsecret=secret
没有在线的Maven仓库,强烈建议clone代码到本地作为子工程使用;
2. 如果你是通过spring-annotation配置bean的话,那么只要在你的Spring xml配置文件里加入以下两句便可:
<context:component-scan base-package="com.hamster.weixinmp" />
<util:properties id="wxProperties" location="classpath:/application.properties"/>
如果没有util的话,在beans xml声明中加入:
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="…..
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd"
在org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean的packageToScan中添加org.hamster.weixinmp.dao 3. 如果不想用数据库,那么只扫描com.hamster.weixinmp.service和com.hamster.weixinmp.controller即可,所有的dao在wxService中配置模式均为可选,如果没有注入,则不会执行存储操作;
4. 项目使用了lombok生成Getter/Setter, toString, hashCode, equals方法,lombok有eclipse插件,具体怎么安装请看这里:http://projectlombok.org/download.html,如果不想用lombok的话那么就手动删掉那些注解并用eclipse等工具重新生成一下这些方法便可。
5. 如果你的项目是通过xml的方式配置的话,你需要将所有的dao,service和controller配置到xml中(浩大的工程= =)
6. 数据库的前缀为wx_,一般来说不会有冲突,真冲突了那就自己手动改改吧,反正也不麻烦
7. 数据库有些额外的字段,比如自增长的id,created_date等,用不到就无视吧
8. 如果你不用maven的话……那就把java代码都拷贝到自己的工程里面去吧……

Description: weixin-mp-java 基于Java,Spring,Maven实现的微信公众平台一整套代码,从前端Controller到后端的Dao的实现
============== 1.0.1 2013-1月更新: 支持上传下载多媒体文件 支持接收消息(语音似乎总有问题,同时收到来自微信两个服务器的空的POST的请求,论坛上也有很多人反映此情况) 支持用户管理 支持自定义菜单CRD 支持推广支持接口 强化测试代码 优化代码结构,增加WxMessageHandlerIfc, 只要实现该接口的所有spring bean在收到消息后都会被自动调用. ============== 实现功能:消息接口,通用接口和菜单接口(没有内测号无法测试)
============== 由于涉及的框架比较杂乱,在此一一解释:
1. 简便实用的前置条件:
你的项目是基于Spring,Maven,Hibernate架构;
你的项目至少有一个已经存在的配置文件;
需要在配置文件(例子:application.properties)中添加
wx_token=your_token
wx_appid=asdf
wx_appsecret=secret
没有在线的Maven仓库,强烈建议clone代码到本地作为子工程使用;
2. 如果你是通过spring-annotation配置bean的话,那么只要在你的Spring xml配置文件里加入以下两句便可:
<context:component-scan base-package="com.hamster.weixinmp" />
<util:properties id="wxProperties" location="classpath:/application.properties"/>
如果没有util的话,在beans xml声明中加入:
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="…..
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd"
在org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean的packageToScan中添加org.hamster.weixinmp.dao 3. 如果不想用数据库,那么只扫描com.hamster.weixinmp.service和com.hamster.weixinmp.controller即可,所有的dao在wxService中配置模式均为可选,如果没有注入,则不会执行存储操作;
4. 项目使用了lombok生成Getter/Setter, toString, hashCode, equals方法,lombok有eclipse插件,具体怎么安装请看这里:http://projectlombok.org/download.html,如果不想用lombok的话那么就手动删掉那些注解并用eclipse等工具重新生成一下这些方法便可。
5. 如果你的项目是通过xml的方式配置的话,你需要将所有的dao,service和controller配置到xml中(浩大的工程= =)
6. 数据库的前缀为wx_,一般来说不会有冲突,真冲突了那就自己手动改改吧,反正也不麻烦
7. 数据库有些额外的字段,比如自增长的id,created_date等,用不到就无视吧
8. 如果你不用maven的话……那就把java代码都拷贝到自己的工程里面去吧……
- java-ora/WeixinMultiPlatform

Open Graph Description: weixin-mp-java 基于Java,Spring,Maven实现的微信公众平台一整套代码,从前端Controller到后端的Dao的实现<br /> ============== 1.0.1 2013-1月更新: 支持上传下载多媒体文件 支持接收消息(语音似乎总有问题,同时收到来自微信两个服务器的空的POST的请求,论坛上也有很多人反映此情况) 支持用户管理 支持自定义...

X Description: weixin-mp-java 基于Java,Spring,Maven实现的微信公众平台一整套代码,从前端Controller到后端的Dao的实现&lt;br /&gt; ============== 1.0.1 2013-1月更新: 支持上传下载多媒体文件 支持接收消息(语音似乎总有问题,同时收到来自微信两个服务器的空的POST的请求,论坛上也有很多人反映此情况) 支持用户...

Opengraph URL: https://github.com/java-ora/WeixinMultiPlatform

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository
route-controllerfiles
route-actiondisambiguate
fetch-noncev2:f86ba394-c020-41da-f612-320a7fa022b7
current-catalog-service-hashf3abb0cc802f3d7b95fc8762b94bdcb13bf39634c40c357301c4aa1d67a256fb
request-id9F0A:293FED:45226A6:5ACF81E:6974924C
html-safe-nonceb17c1e7c8a898fe7068c76bfeef42a3710b46afc7c80489727f1fd01243710d9
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5RjBBOjI5M0ZFRDo0NTIyNkE2OjVBQ0Y4MUU6Njk3NDkyNEMiLCJ2aXNpdG9yX2lkIjoiMzQ1NDQ1MTMzMzMzNzQ4NTkwMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac22631133cf2b848048b26487c4522d61b6cc24c28b48ad4d5b269af30dac1eb4
hovercard-subject-tagrepository:132854266
github-keyboard-shortcutsrepository,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location//
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/java-ora/WeixinMultiPlatform
twitter:imagehttps://opengraph.githubassets.com/6234f626ce4bef7b67a331e1d73f7c000eefb65f4b7a24e4e11cdccce5c5584e/java-ora/WeixinMultiPlatform
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/6234f626ce4bef7b67a331e1d73f7c000eefb65f4b7a24e4e11cdccce5c5584e/java-ora/WeixinMultiPlatform
og:image:altweixin-mp-java 基于Java,Spring,Maven实现的微信公众平台一整套代码,从前端Controller到后端的Dao的实现<br /> ============== 1.0.1 2013-1月更新: 支持上传下载多媒体文件 支持接收消息(语音似乎总有问题,同时收到来自微信两个服务器的空的POST的请求,论坛上也有很多人反映此情况) 支持用户管理 支持自定义...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None4a4bf5f4e28041a9d2e5c107d7d20b78b4294ba261cab243b28167c16a623a1f
turbo-cache-controlno-preview
go-importgithub.com/java-ora/WeixinMultiPlatform git https://github.com/java-ora/WeixinMultiPlatform.git
octolytics-dimension-user_id6028935
octolytics-dimension-user_loginjava-ora
octolytics-dimension-repository_id132854266
octolytics-dimension-repository_nwojava-ora/WeixinMultiPlatform
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forktrue
octolytics-dimension-repository_parent_id132839758
octolytics-dimension-repository_parent_nwozhangyaohai/WeixinMultiPlatform
octolytics-dimension-repository_network_root_id32510526
octolytics-dimension-repository_network_root_nwolushtree-cn-honeyzhao/WeixinMultiPlatform
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release488b30e96dfd057fbbe44c6665ccbc030b729dde
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjava-ora%2FWeixinMultiPlatform
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fjava-ora%2FWeixinMultiPlatform
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E&source=header-repo&source_repo=java-ora%2FWeixinMultiPlatform
Reloadhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform
Reloadhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform
Reloadhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform
java-ora https://patch-diff.githubusercontent.com/java-ora
WeixinMultiPlatformhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform
zhangyaohai/WeixinMultiPlatformhttps://patch-diff.githubusercontent.com/zhangyaohai/WeixinMultiPlatform
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fjava-ora%2FWeixinMultiPlatform
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2Fjava-ora%2FWeixinMultiPlatform
Star 0 https://patch-diff.githubusercontent.com/login?return_to=%2Fjava-ora%2FWeixinMultiPlatform
Apache-2.0 license https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/LICENSE
0 stars https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/stargazers
107 forks https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/forks
Branches https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/branches
Tags https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/tags
Activity https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/activity
Star https://patch-diff.githubusercontent.com/login?return_to=%2Fjava-ora%2FWeixinMultiPlatform
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fjava-ora%2FWeixinMultiPlatform
Code https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform
Pull requests 0 https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/pulls
Actions https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/actions
Projects 0 https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/projects
Wiki https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/wiki
Security 0 https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/security
Insights https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/pulse
Code https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform
Pull requests https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/pulls
Actions https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/actions
Projects https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/projects
Wiki https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/wiki
Security https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/security
Insights https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/pulse
Brancheshttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/branches
Tagshttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/tags
https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/branches
https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/tags
4 Commitshttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/commits/master/
https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/commits/master/
srchttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/tree/master/src
srchttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/tree/master/src
.gitignorehttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/.gitignore
.gitignorehttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/.gitignore
.mymetadatahttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/.mymetadata
.mymetadatahttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/.mymetadata
LICENSEhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/LICENSE
LICENSEhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/LICENSE
README.mdhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/README.md
README.mdhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/README.md
pom.xmlhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/pom.xml
pom.xmlhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/blob/master/pom.xml
READMEhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform
Apache-2.0 licensehttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform
https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform#weixinmultiplatform
http://www.springframework.org/schema/util"<brhttp://www.springframework.org/schema/util%22<br
http://www.springframework.org/schema/utilhttp://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-3.1.xsd"<brhttp://www.springframework.org/schema/util/spring-util-3.1.xsd%22<br
http://projectlombok.org/download.html,如果不想用lombok的话那么就手动删掉那些注解并用eclipse等工具重新生成一下这些方法便可。<brhttp://projectlombok.org/download.html%EF%BC%8C%E5%A6%82%E6%9E%9C%E4%B8%8D%E6%83%B3%E7%94%A8lombok%E7%9A%84%E8%AF%9D%E9%82%A3%E4%B9%88%E5%B0%B1%E6%89%8B%E5%8A%A8%E5%88%A0%E6%8E%89%E9%82%A3%E4%BA%9B%E6%B3%A8%E8%A7%A3%E5%B9%B6%E7%94%A8eclipse%E7%AD%89%E5%B7%A5%E5%85%B7%E9%87%8D%E6%96%B0%E7%94%9F%E6%88%90%E4%B8%80%E4%B8%8B%E8%BF%99%E4%BA%9B%E6%96%B9%E6%B3%95%E4%BE%BF%E5%8F%AF%E3%80%82<br
Readme https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform#readme-ov-file
Apache-2.0 license https://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform#Apache-2.0-1-ov-file
Please reload this pagehttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform
Activityhttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/activity
Custom propertieshttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/custom-properties
0 starshttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/stargazers
1 watchinghttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/watchers
0 forkshttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/forks
Report repository https://patch-diff.githubusercontent.com/contact/report-content?content_url=https%3A%2F%2Fgithub.com%2Fjava-ora%2FWeixinMultiPlatform&report=java-ora+%28user%29
Releaseshttps://patch-diff.githubusercontent.com/java-ora/WeixinMultiPlatform/releases
Packages 0https://patch-diff.githubusercontent.com/orgs/java-ora/packages?repo_name=WeixinMultiPlatform
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.