- 51Aspx源码必读.txt[1KB]
- pom.xml[6KB]
- .gitignore[362B]
- from.jpg[11KB]
- README.md[6KB]
- 最新Asp.Net源码下载.url[123B]
源码介绍
源码参数
结构
mall:
----mall-mbg: 数据库生成
----mall-common: 基础模块
----mall-security: 用户认证
----mall-app: 商城后端开发
----mall-admin: 管理后端开发
启动
- app: Run AppApplication.java http://localhost:8080/
- admin: Run AdminApplication.java http://localhost:8081/
- app Druid: http://localhost:8080/druid/index.html
- admin Druid: http://localhost:8081/druid/index.html
- app Swagger: http://localhost:8080/swagger-ui.html
- admin Swagger: http://localhost:8081/swagger-ui.html
# 内网穿透
$ ssh -NR 8888:127.0.0.1:8080 root@www.littleredhat1997.com
# 保持连接
$ vim /etc/ssh/sshd_config
+ ClientAliveInterval 60
+ ClientAliveCountMax 10
MySQL
-
安装(略,或直接安装LNMP)
-
配置外网访问
$ vim /etc/my.cnf + [mysqld] + port = 3306 + bind-address = 0.0.0.0 $ mysql -u root -p mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456'; mysql> FLUSH PRIVILEGES;