# dkt-wap
**Repository Path**: Sunshine_OS/dkt-wap
## Basic Information
- **Project Name**: dkt-wap
- **Description**: 电商 WAP端网站
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-07-02
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# dkt-wap - 手机WAP网站
## 演示地址
http://124.71.106.125:8080/goods
## 导入
### 方式一
1. git clone https://gitee.com/Sunshine_OS/dkt-wap.git
2. 通过 sts 的 import maven porject 的方式导入工程
### 方式二
1. 通过sts Git clone 方式导入项目
## 打包&发布
工程目录下执行该命令:`package -Dmaven.test.skip=true`
工程target 打包输出目录下运行: `java -jar dkt-wap.jar`
访问:**http://localhost:8080/index**
## 依赖配置(init)
##### themleaf 依赖
```xml
org.springframework.boot
spring-boot-starter-thymeleaf
```
```properties
spring.thymeleaf.cache=false
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
```
##### 热部署依赖配置
```xml
org.springframework.boot
spring-boot-devtools
true
org.springframework.boot
spring-boot-maven-plugin
true
```