Reputation: 613
I don't know much about JSP or Java web application and I have to make some front end changes to a website written in JSP. The first step is to run the site on my local machine. I have copied the whole folder from the repo which contains the WEB-INF folder and all the config files.
How do I get it running on my WebLogic Server ?
Upvotes: 2
Views: 27907
Reputation: 107
If you are using jdeveloper, then attach your weblogic server to jdeveloper and directly upload to the particular server by selecting from GUI of jdeveloper as soon as you do your changes in application.
It would be beneficial for you to debug and run application if you use jdeveloper with default integrated weblogic server in it. If you are using standalone weblogic server and have a different IDE then points in above answer are workable and well explained.
Upvotes: 0
Reputation: 818
Follow following steps:
http://localhost:port/console
Change Center
section of the console, click the Lock and Edit
button to open the server instance for changesDomain Structure > Deployments
Summary of Deployments
. Click on Install
button.upload your file(s)
. Browse to the location on your file system where the .war
file was saved. Click the radio button next to the .war file and click Next
.Install this deployment as an application
is selected. Click Next
.Next
again to accept the defaults in this next pane, then click Finish
.Save
button. If everything went ok, you will see a message in green that says Settings updated successfully.
Activate Changes
button. The application has been 'prepared', but not yet deployed at this point.Domain Structure > Deployments
again.Start
button. Select Servicing all requests
. Click Yes
to continue.Active
, you have successfully deployed your Web application to Weblogic.Upvotes: 10