rename MessageServerStarup to MessageServerStartup
This commit is contained in:
parent
3d0c3e2c9c
commit
286ee4e72a
20
pom.xml
20
pom.xml
@ -115,6 +115,26 @@
|
||||
</plugins>
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>2.5.1</version>
|
||||
<configuration>
|
||||
<descriptors>
|
||||
<descriptor>src/main/assembly.xml</descriptor>
|
||||
</descriptors>
|
||||
<finalName>weixin-server</finalName>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>make-assembly</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>single</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-source-plugin</artifactId>
|
||||
|
||||
@ -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();
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user