# WeChatConference **Repository Path**: myue/WeChatConference ## Basic Information - **Project Name**: WeChatConference - **Description**: WeChatConference - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-03-16 - **Last Updated**: 2022-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 本地部署配置: 修改WeChatConference\src\main\resources\properties\sso.properties 修改前: sso.cookie.domain=.tjnywlw.com sso.login.url=http://wx.tjnywlw.com/account/login.html 修改后: sso.cookie.domain= sso.login.url=http://localhost:{端口}/{根路径}/account/login.html 数据库信息文件: WeChatConference\src\main\resources\properties\jdbc.properties 修改前: jdbc.url=jdbc:mysql://192.168.0.53:3306/WeChatConference?useUnicode=true&characterEncoding=utf8 修改后:自己的数据库,用户名密码改为自己的用户名密码 jdbc.url=jdbc:mysql://localhost:3306/WeChatConference?useUnicode=true&characterEncoding=utf8 服务器部署脚本 /WeChatConference/deploy.cmd 数据库备份脚本/WeChatConference/db_back.bat maven项目启动方式:mvn jetty:run -Dmaven.test.skip=true maven启动配置:pom.xml中,端口,根路径都可以自己配置 示例如下: /*********************************************/ org.eclipse.jetty jetty-maven-plugin 9.3.7.v20160115 / ${basedir}/src/main/webapp/WEB-INF/web.xml exit 9091 ${project.basedir}/src/main/webapp 0 80 /*********************************************/