WebLogic是Oracle公司出品的一个基于JAVAEE架构的中间件。用于开发。集成。部署和管理大型分布式Web应用。网络应用和数据库。那么Weblogic如何部署项目呢。这篇文章就为大家介绍下Weblogic部署项目步骤。
在WebLogic中部署项目通常有三种方式:第一。在控制台中安装部署;第二。将部署包放在domain域中autodeploy目录下部署;第三。使用域中配置文件config.xml 进行项目的部署。下面逐一为大家介绍。
一。控制台部署
1。启动WebLogic服务。登录到WebLogic控制台页面。输入用户名和密码。登录到控制台里面;
2。点击左侧的部署;
3。在右侧点击安装按钮。准备进行项目安装;
4 。看到路径输入框。可以在下面选择要部署的项目的位置;
5。 也可以直接输入要部署的包的位置。敲回车;
6。点击下一步即可;
7。继续下一步;
8。点击完成按钮;
9。 保存前面各步的设置;
10。保存完成后。会看到激活更改的提示。且不需要重启。
11。这时便可以进行测试了。输入项目名称。看到了项目的欢迎页面。即项目部署成功。
二。autodeploy自动部署
自动部署时不需要登录控制台。在domain域的主目录下面有个autodeploy目录。直接将项目包拷贝到autodeploy目录下面就可以了。
autodeploy目录里面有个readme.txt 文档。打开看一下。这里摘第一段出来
[html] view plain copy
This autodeploy directory provides a quick way to deploy applications
to a development server. When the WebLogic Server instance is running
in development mode, applications and modules in this directory are
automatically deployed.
主要说什么呢。就是开发模式下面。当WebLogic启动时。会自动部署autodeploy目录下面的项目。
将部署包servletDemo.war 丢到autodeploy目录下面。启动startWebLogic.cmd 。进行servletDemo的访问。依然可以看到欢迎页面。
三。config.xml配置文件部署
config.xml文件在domain域的config目录下面。config.xml主要配置了domain域的一些相关信息。我们要部署项目。该在哪里配置呢?
[html] view plain copy
<?xml version=’1.0′ encoding=’UTF-8′?>
<domain xmlns=”http://xmlns.oracle.com/WebLogic/domain” xmlns:sec=”http://xmlns.oracle.com/WebLogic/security” xmlns:wls=”http://xmlns.oracle.com/WebLogic/security/wls” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://xmlns.oracle.com/WebLogic/security/xacml http://xmlns.oracle.com/WebLogic/security/xacml/1.0/xacml.xsd http://xmlns.oracle.com/WebLogic/security/providers/passwordvalidator http://xmlns.oracle.com/WebLogic/security/providers/passwordvalidator/1.0/passwordvalidator.xsd http://xmlns.oracle.com/WebLogic/domain http://xmlns.oracle.com/WebLogic/1.0/domain.xsd http://xmlns.oracle.com/WebLogic/security http://xmlns.oracle.com/WebLogic/1.0/security.xsd http://xmlns.oracle.com/WebLogic/security/wls http://xmlns.oracle.com/WebLogic/security/wls/1.0/wls.xsd”>
<name>base_domain</name>
<domain-version>12.1.3.0.0</domain-version>
<security-configuration>
<name>base_domain</name>
<realm>
<sec:authentication-provider xsi:type=”wls:default-authenticatorType”>
<sec:name>DefaultAuthenticator</sec:name>
</sec:authentication-provider>
<sec:password-validator xmlns:pas=”http://xmlns.oracle.com/WebLogic/security/providers/passwordvalidator” xsi:type=”pas:system-password-validatorType”>
<sec:name>SystemPasswordValidator</sec:name>
<pas:min-password-length>8</pas:min-password-length>
<pas:min-numeric-or-special-characters>1</pas:min-numeric-or-special-characters>
</sec:password-validator>
</realm>
<default-realm>myrealm</default-realm>
<credential-encrypted>{AES}xLPXh4gcT6JErTB+toxRZ1pQpAS+MGMuqnnXzu/OsxWMQTB8152ggdbUlhkSXUGC9f959oL7tIzyZiu9XdeajlkK9vAu9cQlCKLLUaUMyl5Ty4C0uuJA99b14eR7oIu4</credential-encrypted>
<node-manager-username>WebLogic</node-manager-username>
<node-manager-password-encrypted>{AES}n3LLdgmAsocPRoYUrFfR2waWOlEz6KDFsp7+gByNeo8=</node-manager-password-encrypted>
</security-configuration>
<server>
<name>AdminServer</name>
<listen-address></listen-address>
</server>
<embedded-ldap>
<name>base_domain</name>
<credential-encrypted>{AES}21z8vCiCbuaYqsSj5t5+y6qvEY8dE3NdNr0zDG+K3EdwWEubzk9Vmx79Di43oxqX</credential-encrypted>
</embedded-ldap>
<configuration-version>12.1.3.0.0</configuration-version>
<admin-server-name>AdminServer</admin-server-name>
</domain>
我们的项目部署信息添加在configuration-version 和 admin-server-name 之间
[html] view plain copy
<configuration-version>12.1.3.0.0</configuration-version>
<app-deployment>
<name>servletDemo</name>
<target>AdminServer</target>
<module-type>war</module-type>
<source-path>C:\Users\ZhangQi\Desktop\servletDemo</source-path>
<security-dd-model>DDOnly</security-dd-model>
</app-deployment>
<admin-server-name>AdminServer</admin-server-name>
刚开始进行config.xml 配置文件部署的时候。出现了404。修改了下配置就可以了。将部署的war包解压为文件夹的形式。然后将 <module-type>war</module-type> 里面的war 修改为 dir 即可:
[html] view plain copy
<app-deployment>
<name>servletDemo</name>
<target>AdminServer</target>
<module-type>dir</module-type>
<source-path>C:\Users\ZhangQi\Desktop\servletDemo</source-path>
<security-dd-model>DDOnly</security-dd-model>
<staging-mode>nostage</staging-mode>
</app-deployment>
然后启动WebLogic服务即可。
本文地址:https://gpu.xuandashi.com/31697.html,转载请说明来源于:渲大师
声明:本站部分内容来自网络,如无特殊说明或标注,均为本站原创发布。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。分享目的仅供大家学习与参考,不代表本站立场!