|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
IDE是好。java中的IDE更是百花齐放,你用jbuilder能说jbuilder赶不上vs吗?用eclipse,netbeans也很舒服啊。我就不明白“稍微差一些”那一些是从哪里差来的。apache我的运转情况:Windows2003ServerSP4+J2SDK1.5.0+Apache2.0.54+Tomcat5.5.9
**筹办软件:
1、安装Apache2.0.54
2、Tomcat5.5.14
3、Jk2毗连器(mod_jk2.so)
一:设置Apache和tomcat
Apache安装在d:Apache2下,监听端口80;
Tomcat在D:Tomcat51下,监听端口8080;
二者都以windows2000服务举行安装。
将mod_jk2.so复制到d:Apache2modules目次下:
1.编纂d:Apache2confhttpd.conf文件,在LoadModule那一段代码中增加:
LoadModulejk2_modulemodules/mod_jk2.so
2.将AddDefaultCharsetISO-8859-1改成AddDefaultCharsetGB2312使Apache主动撑持中文显现;
3.在“假造主机设置代码段”中增加:(此段设置能够依据你的实践情形举行修正)
<VirtualHost*:80>
ServerAdminlinvsfen◎163.com
DocumentRoot"d:/Tomcat51/webapps/jsp-examples
ServerNamelocalhost
ErrorLoglogs/error_log
CustomLoglogs/access_logcommon
</VirtualHost>
**编写workers2.properties文件并到场d:Apache2conf目次,内容以下:
#Usuallycommentedoutonproductionenvironments
[logger.apache2]
file=”D:/Apache2/logs/error.log”
level=ERROR
#Providethebasicconfigneeded
[config]
file=D:/Apache2/conf/workers2.properties
debug=1
#ProvidethelocationofshmfileontheApachewebserver
[shm]
file=D:/Apache2/conf/jk2.shm
size=1000000
[channel.socket:localhost:8009]
port=8009
host=localhost
#definetheworker
[ajp13:localhost:8009]
channel=channel.socket:localhost:8009
#MaptheTomcatexampleswebapptotheWebserverurispace
[uri:/jsp-examples/*]
[uri:/*.jsp]
**编写一个jsp文件(sessiontest.jsp),放在d:Tomcat51webappsjsp-examples下;
从头启动今后,启动apache和tomcat,会见http://localhost/jsp-examples/sessiontest.jsp能够会见。
二.Tomcat设置上ssl步骤:
1.天生服务器证书server02.jks和客户端证书dwp.p12
2、把server02.jks放到conf目次下,
翻开d: omcat51confserver.xml文件,
然后修正server.xml文件,将正文失落的内容的正文往失落和增添证书寄存的地位:以下:
<Connectorport="8443"maxHttpHeaderSize="8192"
maxThreads="150"minSpareThreads="25"maxSpareThreads="75"
enableLookups="false"disableUploadTimeout="true"
acceptCount="100"scheme="https"secure="true"
clientAuth="true"sslProtocol="TLS"
keystoreFile="confserver02.jks"keystorePass="123456"
truststoreFile="confserver02.jks"truststorePass="123456"/>
注:server02.jks是证书存贮文件
3.安装客户端证书dwp.p12
3.修正Tomcat设置,使其主动启用SSL
翻开d: est omcat51webappsjsp-examplesWEB_INFweb.xml文件,在security-constraint标签下,增添以下内容:
<user-data-constraint>
<description>
Constraintheuserdatatransportforthewholeapplication
</description>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
正文失落<auth-constraint>标签下的内容
<auth-constraint>
<!--Anyonewithoneofthelistedrolesmayaccessthisarea-->
<role-name>tomcat</role-name>
<role-name>role1</role-name>
</auth-constraint>
在web-resource-collection标签下,增添以下内容:
<url-pattern>/*</url-pattern>
从头启动Apache和tomcat,
会见http://localhost/jsp-examples/sessiontest.jsp是但是会见的,这是体系提醒用户出示证书,启用SSL加密通道,SSL创建后,前往了局。URL变成https://localhost:8443/jsp-examples/sessiontest.jsp
C++编译的是本地码,优点是启动快,而且可以精确控制资源因此可以开发很高效的程序.缺点是编程麻烦,而且容易留下安全隐患.跨平台靠源代码在各个平台间分别编译(一处编写到处编译) |
|