要學(xué)習(xí)好一套系統(tǒng)首先要了解它的結(jié)構(gòu),本文詳細(xì)的介紹 WebLogic 的一些結(jié)構(gòu)和特點(diǎn):
我們提供的服務(wù)有:成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、微信公眾號(hào)開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、三都ssl等。為1000+企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的三都網(wǎng)站制作公司
WebLogic的大部分配置是在 weblogic.properties 里完成的,只要仔細(xì)的研究這個(gè)文件就可以清楚得知關(guān)于 WebLogic 的一些結(jié)構(gòu)和特點(diǎn),下面就對(duì) weblogic.properties 文件里的一些配置項(xiàng)作一些說明:
weblogic.httpd.documentRoot=public_html/
這就是WebLogic 的WEB
服務(wù)器的根目錄,即是目錄/weblogic/myserver/public_html/
weblogic.password.system=sdfjkdshfds
這個(gè)前文已經(jīng)提到,是設(shè)置管理員密碼。
weblogic.system.listenPort=7001
這是設(shè)置 WebLogic 的 WEB 服務(wù)器端口。
weblogic.httpd.servlet.classpath=/weblogic/myserver/servletclasses
設(shè)置Servlet存放的路徑
關(guān)于Servlet
出于安全的目的,在 WebLogic 下運(yùn)行的 WebLogic 最好在 weblogic.properties
里登記后才能運(yùn)行,例如上文的提到Servlet
http://localhost:7001/helloWorld,
它在weblogic.properties
里的登記項(xiàng)是
weblogic.httpd.register.helloWorld=examples.servlets.HelloWorldServlet
實(shí)際上,這個(gè)
Servlet
的實(shí)際路徑是
/weblogic/myserver/servletclasses/examples/servlets/HelloWorldServlet.class
對(duì)照一下weblogic.properties里的登記項(xiàng)和HelloWorldServlet.class文件的路徑,應(yīng)該不難找出其登記Servlet的規(guī)律吧。
在weblogic.properties里有一下幾個(gè)Servlet的登記項(xiàng):
weblogic.httpd.register.AdminEvents=admin.AdminEvents
weblogic.httpd.register.AdminClients=admin.AdminClients
weblogic.httpd.register.AdminConnections=admin.AdminConnections
weblogic.httpd.register.AdminJDBC=admin.AdminJDBC
weblogic.httpd.register.AdminLicense=admin.AdminLicense
weblogic.httpd.register.AdminMain=admin.AdminMain
weblogic.httpd.register.AdminProps=admin.AdminProps
weblogic.httpd.register.AdminRealm=admin.AdminRealm
weblogic.httpd.register.AdminThreads=admin.AdminThreads
weblogic.httpd.register.AdminVersion=admin.AdminVersion
這就是管理員管理 WebLogic 用的Servlet,通過URL訪問http://localhost:7001/AdminMain,在彈出的身份驗(yàn)證對(duì)話框了輸入 system 和在 weblogic.password.system= 設(shè)置的密碼,就可以進(jìn)入 WebLogic 的Web管理界面進(jìn)行管理。
如果是為了方便一些,不經(jīng)登記就使用Servlet,那么可以在 weblogic.properties
里把
weblogic.allow.execute.weblogic.servlet.classes=everyone
weblogic.httpd.register.servlets=weblogic.servlet.ServletServlet
的注釋去掉,而對(duì)前面的提到的/weblogic/myserver/servletclasses/examples/servlets/HelloWorldServlet.class
的 Servlet
調(diào)用的URL是:
http://localhost:7001/servlets/examples/servlets/HelloWorldServlet
http://localhost:7001/servlets/examples.servlets.HelloWorldServlet
對(duì)于初學(xué)者來說也許不明白,為何目錄可以加“.”來區(qū)分,我的理解是因?yàn)橥ㄟ^閱讀源代碼得知HelloWorldServlet.class 是屬于examples.servlets這個(gè)包的,所以也可以以這個(gè)URL格式調(diào)用。
[@more@]