Skip to content

Commit 3a95e2b

Browse files
author
HongYuKeJi
committed
eBestMall Java
0 parents  commit 3a95e2b

File tree

5 files changed

+116
-0
lines changed

5 files changed

+116
-0
lines changed

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# idea
2+
.idea/
3+
/idea/
4+
*.ipr
5+
*.iml
6+
*.iws
7+
8+
# compile class file
9+
*.class
10+
11+
# package file
12+
#*.jar
13+
*.war
14+
*.ear
15+
16+
# kdiff3 ignore
17+
*.orig
18+
19+
# maven ignore
20+
target/
21+
22+
# eclings ignore
23+
.settings/
24+
.project
25+
.classpatch
26+
27+
# temp file
28+
*.log
29+
*.cache
30+
*.diff
31+
*.patch
32+
*.tmp
33+
34+
# system ignore
35+
.DS_Store
36+
Thumbs.db
37+
desktop.ini

README.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
eBestMall - B2B2C商城系统
2+
===============================
3+
> eBestMall是国内电子商务系统及服务解决方案新创品牌。为传统企业及创业者提供零售网店系统、网上商城系统、分销系统、B2B2C商城系统、微信分销系统、行业ERP等产品和解决方案。
4+
5+
[![Latest Stable Version](https://poser.pugx.org/hongyukeji/ebestmall/v/stable.png)](https://packagist.org/packages/hongyukeji/ebestmall)
6+
[![Total Downloads](https://poser.pugx.org/hongyukeji/ebestmall/downloads.png)](https://packagist.org/packages/hongyukeji/ebestmall)
7+
8+
# 安装与更新
9+
10+
```
11+
运营版:
12+
composer create-project hongyukeji/ebestmall ebestmall
13+
14+
开发版:
15+
composer create-project hongyukeji/ebestmall ebestmall dev-master
16+
17+
```
18+
19+
# 运行环境
20+
21+
* Java版本:>= 1.8.0
22+
* Tomcat版本:>= 8.5
23+
* Maven版本:>= 3.5.2
24+
* MySQL版本:>= 5.5
25+
26+
# 系统开发
27+
28+
* 公司名称:鸿宇科技有限公司
29+
* 公司官网:www.hongyu.ltd
30+
* 核心技术:Java、Html5、Css3、JavaScript ES6、jQuery、Ajax、MySQL、VueJS、Bootstrap
31+
* 开发工具:IntelliJ IDEA、Navicat for MySQL、PhotoShop CS6、XMind
32+
* 开发团队:Shadow(项目总监)、Spider(代码审计)、Free(数据库建模)、Wind(Java后端开发)、Flower(前端UI设计)、Boy(Html5前端开发)
33+
* 项目支持:感谢所有支持鸿宇团队的朋友!
34+
35+
# 系统维护
36+
37+
* Http: www.ebestmall.com
38+
* Author:Shadow
39+
* QQ:13391528
40+
* Mobile:13952101395
41+
* Email:hongyukeji@126.com
42+
43+
# Google Chrome 调试插件
44+
45+
* FeHelper
46+
* Restlet Client

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com</groupId>
5+
<artifactId>ebestmall</artifactId>
6+
<packaging>war</packaging>
7+
<version>1.0-SNAPSHOT</version>
8+
<name>ebestmall Maven Webapp</name>
9+
<url>http://maven.apache.org</url>
10+
<dependencies>
11+
<dependency>
12+
<groupId>junit</groupId>
13+
<artifactId>junit</artifactId>
14+
<version>3.8.1</version>
15+
<scope>test</scope>
16+
</dependency>
17+
</dependencies>
18+
<build>
19+
<finalName>ebestmall</finalName>
20+
</build>
21+
</project>

src/main/webapp/WEB-INF/web.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE web-app PUBLIC
2+
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
3+
"http://java.sun.com/dtd/web-app_2_3.dtd" >
4+
5+
<web-app>
6+
<display-name>Archetype Created Web Application</display-name>
7+
</web-app>

src/main/webapp/index.jsp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<html>
2+
<body>
3+
<h2>Hello World!</h2>
4+
</body>
5+
</html>

0 commit comments

Comments
 (0)