Skip to content

Commit 97e21ce

Browse files
committed
add ServletAjax project
1 parent d3449e9 commit 97e21ce

19 files changed

Lines changed: 380 additions & 0 deletions

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
* [tomcatServlet3.0 Web 服务器](./tomcatServer3.0/)
1212

13+
* [ServletAjax 原生 js 实现搜索框智能提示](./ServletAjax/)
14+
1315
* [JspChat jsp 聊天室](./JspChat/)
1416

1517
* [eStore 图书管理系统](./estore/)

ServletAjax/.classpath

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="src"/>
4+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="con" path="melibrary.com.genuitec.eclipse.j2eedt.core.MYECLIPSE_JAVAEE_5_CONTAINER"/>
6+
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/jsoup-1.8.1.jar"/>
7+
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/json-lib-2.1-jdk13.jar"/>
8+
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/commons-logging-1.1.1.jar"/>
9+
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/commons-beanutils-1.8.0.jar"/>
10+
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/commons-collections-3.2.1.jar"/>
11+
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/commons-logging-1.1.1 (1).jar"/>
12+
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/ezmorph-1.0.6.jar"/>
13+
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/commons-lang-2.5.jar"/>
14+
<classpathentry kind="output" path="WebRoot/WEB-INF/classes"/>
15+
</classpath>

ServletAjax/.mymetadata

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project-module
3+
type="WEB"
4+
name="ServletAjax"
5+
id="myeclipse.1490682069579"
6+
context-root="/ServletAjax"
7+
j2ee-spec="5.0"
8+
archive="ServletAjax.war">
9+
<attributes>
10+
<attribute name="webrootdir" value="WebRoot" />
11+
</attributes>
12+
</project-module>
13+

ServletAjax/.project

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>ServletAjax</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.genuitec.eclipse.j2eedt.core.WebClasspathBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.jdt.core.javabuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>com.genuitec.eclipse.j2eedt.core.J2EEProjectValidator</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.genuitec.eclipse.j2eedt.core.DeploymentDescriptorValidator</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
<buildCommand>
29+
<name>org.eclipse.wst.validation.validationbuilder</name>
30+
<arguments>
31+
</arguments>
32+
</buildCommand>
33+
<buildCommand>
34+
<name>com.genuitec.eclipse.ast.deploy.core.DeploymentBuilder</name>
35+
<arguments>
36+
</arguments>
37+
</buildCommand>
38+
</buildSpec>
39+
<natures>
40+
<nature>com.genuitec.eclipse.ast.deploy.core.deploymentnature</nature>
41+
<nature>com.genuitec.eclipse.j2eedt.core.webnature</nature>
42+
<nature>org.eclipse.jdt.core.javanature</nature>
43+
</natures>
44+
</projectDescription>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#Tue Mar 28 14:21:09 CST 2017
2+
eclipse.preferences.version=1
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
4+
org.eclipse.jdt.core.compiler.compliance=1.5
5+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7+
org.eclipse.jdt.core.compiler.source=1.5
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Manifest-Version: 1.0
2+
Class-Path:
3+
2.33 KB
Binary file not shown.
226 KB
Binary file not shown.
562 KB
Binary file not shown.
273 KB
Binary file not shown.

0 commit comments

Comments
 (0)