One 、 pack Web application
First, we're going to deploy to WebLogic Of Web The application is packaged into war package , The specific operation steps are shown in the figure below :
Select the package you want to package 【oams】 project →【Export...】
Click on 【Finish】, It can be oams This Web The application is packaged into oams.war 了 , As shown in the figure below :
After packing , You can see one on the desktop omas.war file , As shown in the figure below :
Two 、 Deploy Web Applied to the WebLogic The server
After many tests, it was found that , take Web Apply to War In the form of a package WebLogic Server is always unsuccessful , The project is to use Struts2+Spring3.x+Hibernate4.x Developed , And will be war After the package is decompressed, it can be successfully deployed in the form of a folder , The specific reason is unknown , I hope that those who have experience in this field can give some guidance . Let's talk about how to use a folder to Web Application deployment to WebLogic On the server .
1、 Will be packed oams.war The package is uploaded to remote WebLogic A directory on the server .
For example, upload to 【D:\oams Deploy 】 Such a directory , And then war The package is decompressed into a folder using the decompression tool , As shown in the figure below :
take oams.war After decompression , Generate a oams Folder , As shown in the figure below :
open oams Folder , You can see what's inside Web Application related content , As shown in the figure below :
2、 Use the administrator account to log in to the remote WebLogic The server
3、 Deploy Web application
Here we are , stay WebLogic Deploy Web The application is complete , Switch back to the 【 Deploy 】 panel , You can see what we have deployed oams This Web Applied .
In order to verify oams This Web Apply to WebLogic Whether the server is running normally , We can type in URL Address "http://192.168.1.144:7001/oams" visit oams This Web application , As shown in the figure below :
That's how to do it in WebLogic Deploy in the server Web Application related content . About War Deploy to WebLogic The reason why the server is not successful, I hope that friends with experience in this field can give some advice , Thank you in advance .
WebLogic Use summary ( Four )——WebLogic Deploy Web More related articles on Application
- Deploy WEB Project to server ( Four ) Deploy WEB project Forum To linux The server (Ubuntu) Detailed explanation
A whim , I want to deploy one on my computer web Website . 1, Use Navicat for MYSQL Client creation WEB Project database : Navicat for MYSQL Connect... In the virtual machine mysql database start-up mysql Count ...
- tomcat Deploy web Applied 4 Methods
stay Tomcat There are four kinds of deployment in Web The way it's applied , The brief summary is respectively : (1) utilize Tomcat Automatic deployment (2) Deploy with the console (3) Add custom Web Deployment file (%Tomcat_Home%\conf\Cat ...
- stay Linux Installation configuration Tomcat And deploy web application ( Three ways )
System version :centos6.5 edition java edition :1.7 One . preparation 1.java -version Check if there is java Environmental Science , If not, you need to install and configure it into environment variables . 2. download tomcat package , Download address :h ...
- Tomcat series (11)——Tomcat Deploy web Applied 4 Methods
Core content 1. stay Tomcat There are four kinds of deployment in Web The way it's applied , Namely : (1) utilize Tomcat Automatic deployment ( Project direct copy OR WAR Package copy To webapps Next ) (2) Deploy with the console (tomcat Of man ...
- Centos Installation configuration Tomcat, And deploy web application
One . install JDK And configure environment variables 1. Check and remove system pre installed jdk // If the operating system is not the minimum installation , Will install by default openjdk#rpm -qa | grep java // Remove system preload jdk, You can delete it with one command ...
- tomcat Deploy web Applied 4 There are two ways to deploy multiple applications
original text : tomcat Deploy web Applied 4 Methods stay Tomcat There are four kinds of deployment in Web The way it's applied , The brief summary is respectively : (1) utilize Tomcat Automatic deployment (2) Deploy with the console (3) Add custom Web Deployment file ...
- WebLogic Use summary ( 7、 ... and )——WebLogic Deploy Web Apply and bind domain names
One . stay WebLogic Create a virtual host in Locate the virtual host panel , As shown in the figure below :
- weblogic How to deploy web application
weblogic How to deploy web application A basic course for programmers : Rookie programmer
- Weblogic Deploy web Get the project name from the project code null The problem of
Write it at the front This problem came across once before , It took a long time to forget , It's better to have a good memory than a bad pen , Take note .Windows The lower part of the Department arrived Tomcat and Linux The lower part of the Department arrived Weblogic Get the name of the project . Key code java Code w ...
Random recommendation
- python Online PK game ( Sixth days )
This section assignment : Proficient in using classes and modules , Write an interactive . Conflicting procedures . So this time I wrote a text turn system PK game , The main program of the system is in the root directory :game_menu.py 1. System function module : The sixth day's homework : Word game program ...
- devenv Detailed command
devenv [ Solution file | Project documents | Any document . Extension ] [ switch ] devenv The first parameter of is usually a solution file or project file . If you want to open the file automatically in the editor , You can also use any other text ...
- IE6 And javascript:void(0)
I've had this problem several times , Now to summarize . Code : <a onclick="window.location.href='http://www.google.com'" href=&q ...
- stay Ubuntu 14.04 64bit Installation on numpy and matplotlib library
original text :http://blog.csdn.net/tao_627/article/details/44004541 Follow this to successfully install ! Machine learning is a form of data mining , I'm learning < Machine learning practice > ...
- C++ Basics —— Class encapsulation simple example
One . Preface stay IC Front end design / Validation domain , It's just HDL It's not enough . At present, most projects use the developed system architecture and IP Core, Therefore, the workload of the design part gradually shifts to the direction of system integration and verification . And in the integration and validation process , Often with a variety of scripts and faces ...
- ASP.NET Core Troubleshoot problems :Request.EnableRewind The first time after reading Request.Body
The actual application scenario is to save the files uploaded by users to alicloud in turn OSS With Tencent cloud COS , The implementation is to enable Request.EnableRewind() In the case of Request.Body Read stream , And in turn through ...
- JS The unary operator in
expression Unary operators priority associativity The order of operations What is an expression ? Namely JS A phrase in , When the interpreter encounters the phrase, it calculates it , Get a result to participate in the operation , We call the various phrases involved in the operation expressions . ...
- Different applications share redis application , But sub databases store data
In daily development work , This is often the case project A , Need to use redis project B , Also use redis …… It turned out to be silly to install a few on the server redis, Using different port numbers Actually redis There can be 16 A database ...
- java Convert all strings to uppercase or lowercase
public class DaXie { public static void main(String[] args) { /** Convert all strings to uppercase or lowercase letters and print them out */ String str ...
- Docker install Hadoop HDFS Command line operations
Online pull Docker Templates , Use singlarities/hadoop Mirror image [[email protected] /]# docker pull singularities/hadoop see : [[email protected] ...