1、安装好weblogic8.1
2、利用Configuration Wizard配置Domain和server,按照缺省即可
3、利用Configuration Wizard扩展建立好的Domain,此时会建立缺省应用程序模  DefaultWebApp
4、http://localhost:7001/console进入管理界面,开始部署

说明:
1、WEB-INF目录及其web.xml,weblogic.xml文件不可缺少,可以用Jbuild2005自动生成
2、在web.xml必须指定<welcome-file-list>,否则IE不会象TOMACAT配置那样列出文件,而是会报错

weblogic.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN" "http://www.bea.com/servers/wls810/dtd/weblogic810-web-jar.dtd">
<weblogic-web-app>
    <context-root>/WebModule1</context-root>
</weblogic-web-app>

在Jbuild2005中的配置:
Home directory:/bea/weblogic81/server
Main class:weblogic.Server
Working directory:D:/bea/user_projects/domains/mydomain

BEA home directory:d:\bea
Domain directory:D:/bea/user_projects/domains/mydomain
User name:weblogic
Password:weblogic
Server name:myserver
Listen address:127.0.0.1
Listen port:7001

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-11
  • 2022-02-12
  • 2021-11-16
  • 2021-07-02
  • 2021-11-24
猜你喜欢
  • 2022-12-23
  • 2021-05-30
  • 2022-01-17
  • 2022-12-23
  • 2021-12-02
  • 2022-12-23
  • 2021-12-10
相关资源
相似解决方案