程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> WebLogic的初步研究(2-2)

WebLogic的初步研究(2-2)

編輯:關於JSP

關於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管理界面進行管理。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved