- 浏览: 73748 次
- 性别:
最新评论
-
imrt:
同问:debug。。。不知道这里是不是进源码调试的意思。我直接 ...
tomcat中给server.xml加入<Context>元素 -
can4you:
anlongstar 写道<Context path=& ...
tomcat中给server.xml加入<Context>元素 -
yangleilt:
为什么偏偏不说debug呢?
tomcat中给server.xml加入<Context>元素 -
anlongstar:
<Context path="http://l ...
tomcat中给server.xml加入<Context>元素 -
longxj:
请问你mysql数据库了的用户密码存的是什么?是用apache ...
svn,apache,mysql实现版本控制和身份验证
文章列表
一.相关下载
svn-1.4.0
apache_2.0.55-win32-x86-no_ssl
mod_auth_mysql-2.0.49-w32.zip
site-1.0.4.zip(subclipse用于eclipse3.1.*)
site-1.2.2.zip(subclipse用于eclipse3.2.*)
TortoiseSVN-1.4.0.7501-win32-svn-1.4.0.msi
二.安装配置
首先安装apache,安装过程中会提示填写ServerName等,有的话就填,没有的话就写上IP,我填的是localhost.
安装完apache ...
getc():
调用方式:int getc(FILE *stream)
它返回指定输入流stream的当前位置的下一个字符,并增加文件的位置指示器.
getch():
调用方式:int getch(void)
getch()从控制台读取一个字符,但不把该字符显示在屏幕上,也就是不回显.
getche():
调用方式:int getche(void)
getchar()从控制台读取一个字符,把该字符显示在屏幕上,也就是回显.
getchar():
调有方式:int getchar(void)
getchar()从控制台读取一个字符,并回显,它和getch(),getche()的不同在于,它等到输入 ...
- 2007-03-17 18:14
- 浏览 21267
- 评论(0)
为了从两个或多个表中选出数据,我们一般使用表连接来实现这个功能。
本节介绍join(连接)的概念. 为此我们准备了两个试验用表: album(专辑表) 和 track(曲目表).
专辑表:包含200首来自Amazon的音乐CD的概要信息。
...
- 2007-03-08 12:00
- 浏览 4687
- 评论(0)
hibernate id 映射配置
xml 代码
<id name=”id” column=”id” type=”java.lang.Integer”>
<generator class=”native”/>
id>
上面是一个简单的id映射配置,id属性对应映射类中的属性,column对应数据库中表字段。
重点是这个generator<generator></generator><generator class="native">&l ...
- 2007-01-16 14:54
- 浏览 9732
- 评论(0)
(本文摘自《Tomcat与Java Web开发技术详解》)
<Context>代表了运行在<Host>上的单个Web应用,一个<Host>可以有多个<Context>元素,每个Web应用必须有唯一的URL路径,这个URL路径在<Context>中的属性path中设定。
<Context path="/helloApp" docBase="helloApp" debug="0" reloadable="true"/>
<Context> ...
- 2006-12-11 13:14
- 浏览 29739
- 评论(4)