Skip to content

Commit aae5f11

Browse files
committed
finish ch04 2016/05/07
1 parent 63cdc7d commit aae5f11

33 files changed

Lines changed: 868 additions & 5 deletions

readme.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,14 @@
2626
###11、<a href="https://github.com/Hackergeek/JavaWebBase/blob/master/ch03/ch03_11">例3-11 用户登录验证</a>
2727
###12、<a href="https://github.com/Hackergeek/JavaWebBase/blob/master/ch03/ch03_12_time.jsp">例3-12 页面自动刷新时间</a>
2828
###13、<a href="https://github.com/Hackergeek/JavaWebBase/blob/master/ch03/ch03_13_session.jsp">例3-13 利用session对象获取会话信息并显示</a>
29-
###以下内容暂未完成
3029
###14、<a href="https://github.com/Hackergeek/JavaWebBase/blob/master/ch03/ch03_14_application.jsp">例3-14 统计网站访问人数</a>
3130
###15、<a href="https://github.com/Hackergeek/JavaWebBase/blob/master/ch03/ch03_15_out">例3-15 利用out对象输出页面信息</a>
3231
###16、<a href="https://github.com/Hackergeek/JavaWebBase/blob/master/ch03/ch03_16">例3-16 网上答题及其自动评测系统</a>
3332
###17、<a href="https://github.com/Hackergeek/JavaWebBase/blob/master/ch03/ch03_17">例3-17 简单的购物车应用案例</a>
34-
35-
3633
##第4章JDBC数据库访问技术
3734
###1、<a href="https://github.com/Hackergeek/JavaWebBase/tree/master/student_jdbc">学生身体体质信息管理系统(通过JDBC驱动程序直接连接数据库)</a>
38-
###2、<a href="https://github.com/Hackergeek/JavaWebBase/blob/master/ch02/ch02_8.html">学生身体体质信息管理系统(通过连接池技术连接数据库)</a>
39-
35+
###2、<a href="https://github.com/Hackergeek/JavaWebBase/tree/master/student">学生身体体质信息管理系统(通过连接池技术连接数据库)</a>
36+
###以下内容暂未完成
4037
##第5章JavaBean技术
4138

4239
##第6章Servlet技术

student/.classpath

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
4+
<attributes>
5+
<attribute name="owner.project.facets" value="java"/>
6+
</attributes>
7+
</classpathentry>
8+
<classpathentry kind="con" path="com.genuitec.runtime.library/com.genuitec.generic_7.0">
9+
<attributes>
10+
<attribute name="owner.project.facets" value="jst.web"/>
11+
</attributes>
12+
</classpathentry>
13+
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
14+
<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
15+
<classpathentry kind="con" path="com.genuitec.runtime.library/com.genuitec.jstl_1.2.2">
16+
<attributes>
17+
<attribute name="org.eclipse.jst.component.dependency" value="WEB-INF/lib"/>
18+
<attribute name="owner.project.facets" value="jst.web.jstl"/>
19+
</attributes>
20+
</classpathentry>
21+
<classpathentry kind="lib" path="WebRoot/WEB-INF/lib/mysql-connector-java-5.6-bin.jar"/>
22+
<classpathentry kind="output" path="WebRoot/WEB-INF/classes"/>
23+
</classpath>

student/.project

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>student</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.jsdt.core.javascriptValidator</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>org.eclipse.wst.common.project.facet.core.builder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>org.eclipse.wst.validation.validationbuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
<buildCommand>
29+
<name>com.genuitec.eclipse.j2eedt.core.DeploymentDescriptorValidator</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>org.eclipse.jem.workbench.JavaEMFNature</nature>
41+
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
42+
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
43+
<nature>org.eclipse.jdt.core.javanature</nature>
44+
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
45+
</natures>
46+
</projectDescription>

student/.settings/.jsdtscope

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" path="WebRoot"/>
4+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
5+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.WebProject">
6+
<attributes>
7+
<attribute name="hide" value="true"/>
8+
</attributes>
9+
</classpathentry>
10+
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary/StandardBrowser/html5"/>
11+
<classpathentry kind="output" path=""/>
12+
</classpath>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
4+
org.eclipse.jdt.core.compiler.compliance=1.7
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.7
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
2+
<wb-module deploy-name="student">
3+
<wb-resource deploy-path="/" source-path="/WebRoot" tag="defaultRootSource"/>
4+
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src"/>
5+
<property name="java-output-path" value="/student/WebRoot/WEB-INF/classes"/>
6+
<property name="context-root" value="student"/>
7+
</wb-module>
8+
</project-modules>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<faceted-project>
3+
<runtime name="com.genuitec.runtime.generic.jee70"/>
4+
<fixed facet="wst.jsdt.web"/>
5+
<fixed facet="java"/>
6+
<fixed facet="jst.web"/>
7+
<installed facet="java" version="1.7"/>
8+
<installed facet="jst.web" version="3.1"/>
9+
<installed facet="jst.web.jstl" version="1.2.2"/>
10+
<installed facet="wst.jsdt.web" version="1.0"/>
11+
</faceted-project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.eclipse.wst.jsdt.launching.baseBrowserLibrary
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Window
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+

0 commit comments

Comments
 (0)