参考:https://blog.csdn.net/qq_34102150/article/details/126120056
1、停止MySQL服务,输入 net stop mysql 停止服务。
2、切换到MySQL的bin文件下,
    mysql5.x:  mysqld --console --skip-grant-tables --shared-memory
mysqld --console --skip-grant-tables --shared-memory
3、输入mysql -uroot -p回车,不用输入密码,直接按回车跳过,
    输入:  use mysql 
    输入:  update user set password=PASSWORD('123456') where USER='root';
    或者:   GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'IDENTIFIED BY '123456' WITH GRANT OPTION;
    输入:  FLUSH PRIVILEGES;
4、重启服务
			
			
		 
	
		
			
			
			准备工作:
    需要https的域名
    1、域名申请、备案   (我是在阿里云买的服务器,域名也在阿里云购买  )
    2、域名与IP绑定 
    3、ssl安全证书 申请(
https)    4、下载ssl安全证书布署在tomcat服务器
    4、在云服务器tomcat中布署https           
           参考   https://blog.csdn.net/qq_35206244/article/details/97613498
          ps:任何操作不会,直接打阿里云客服电话 95187    
小程序开发流程:
    1、在微信官网注册帐号
    2、下载小程序开发工具
    3、小程序开发、上传   
    4、小程序送审,审核通过即可分享给你的朋友
			
			
		
 
	
		
			
			
			新建项目坑 
www.macrozheng.com项目,打开maven总是引入失败,后来
https://www.cnblogs.com/dk1024/p/10778841.html
https://blog.csdn.net/ken_ding/article/details/85623092这个是前端有可能遇见的坑的解决办法
 安装环境文档:
http://www.macrozheng.com/#/deploy/mall_deploy_windows
 
	
		
			
			
			1.在pom.xml文件中插入
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>
2.双击IDEA右侧Maven Projects的lifecycle下的package,打包成jar,重新执行以上命令。