rename MessageServerStarup to MessageServerStartup

This commit is contained in:
jinyu
2015-05-13 09:32:11 +08:00
parent 3d0c3e2c9c
commit 286ee4e72a
2 changed files with 25 additions and 5 deletions
@@ -23,11 +23,11 @@ import com.foxinmy.weixin4j.startup.WeixinServerBootstrap;
* @since JDK 1.7
* @see
*/
public class MessageServerStarup {
public class MessageServerStartup {
final String appid = "wx0d1d598c0c03c999";
final String token = "carsonliu13450438112";
final String aesKey = "vlrw8zK2UDSV7Hbmkl8ThzSBmdC11Lw95Um9b2dg3w1";
final String appid = "appid";
final String token = "开发者token";
final String aesKey = "AES密钥";
/**
* 明文模式
@@ -115,6 +115,6 @@ public class MessageServerStarup {
}
public static void main(String[] args) throws WeixinException {
new MessageServerStarup().test5();
new MessageServerStartup().test5();
}
}