您好,登錄后才能下訂單哦!
要學習好一套系統首先要了解它的結構,本文詳細的介紹 WebLogic 的一些結構和特點:
WebLogic的大部分配置是在 weblogic.properties 里完成的,只要仔細的研究這個文件就可以清楚得知關于 WebLogic 的一些結構和特點,下面就對 weblogic.properties 文件里的一些配置項作一些說明:
weblogic.httpd.documentRoot=public_html/
這就是WebLogic 的WEB
服務器的根目錄,即是目錄/weblogic/myserver/public_html/
weblogic.password.system=sdfjkdshfds
這個前文已經提到,是設置管理員密碼。
weblogic.system.listenPort=7001
這是設置 WebLogic 的 WEB 服務器端口。
weblogic.httpd.servlet.classpath=/weblogic/myserver/servletclasses
設置Servlet存放的路徑
關于Servlet
出于安全的目的,在 WebLogic 下運行的 WebLogic 最好在 weblogic.properties
里登記后才能運行,例如上文的提到Servlet
http://localhost:7001/helloWorld,
它在weblogic.properties
里的登記項是
weblogic.httpd.register.helloWorld=examples.servlets.HelloWorldServlet
實際上,這個
Servlet
的實際路徑是
/weblogic/myserver/servletclasses/examples/servlets/HelloWorldServlet.class
對照一下weblogic.properties里的登記項和HelloWorldServlet.class文件的路徑,應該不難找出其登記Servlet的規律吧。
在weblogic.properties里有一下幾個Servlet的登記項:
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,在彈出的身份驗證對話框了輸入 system 和在 weblogic.password.system= 設置的密碼,就可以進入 WebLogic 的Web管理界面進行管理。
如果是為了方便一些,不經登記就使用Servlet,那么可以在 weblogic.properties
里把
weblogic.allow.execute.weblogic.servlet.classes=everyone
weblogic.httpd.register.servlets=weblogic.servlet.ServletServlet
的注釋去掉,而對前面的提到的/weblogic/myserver/servletclasses/examples/servlets/HelloWorldServlet.class
的 Servlet
調用的URL是:
http://localhost:7001/servlets/examples/servlets/HelloWorldServlet
http://localhost:7001/servlets/examples.servlets.HelloWorldServlet
對于初學者來說也許不明白,為何目錄可以加“.”來區分,我的理解是因為通過閱讀源代碼得知HelloWorldServlet.class 是屬于examples.servlets這個包的,所以也可以以這個URL格式調用。
[@more@]免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。