Three ways to deploy projects in weblogic
There are usually three ways to deploy projects in weblogic: first, install and deploy in the console; Second, deploy the deployment package under the autodeploy directory in the domain domain; Third, use the configuration file config. In the domain XML for project deployment.
Console deployment
1. Start the weblogic service, log in to the ...
Posted by mightyworld.com on Wed, 09 Mar 2022 11:13:36 +0100
JNDI configuration of Spring data source compatible with Tomcat and Weblogic
As we all know, the name of looking up JNDI in Tomcat and Weblogic is different. Take Spring configuration for example. In Weblogic, you need to configure as follows:
Java code
<bean id="baseDataSource" class="org.springframework.jndi.JndiObjectFactoryBean">
<property name="jndiName" value="dataSource" /> ...
Posted by biscutty on Wed, 13 Nov 2019 18:54:52 +0100
Vulnerability Environment Construction and Testing of CVE-2018-2893
Build a vulnerability environment (attacked)
Install weblogic 10.3.6.0
Close windows Firewall
Open the installation package and proceed until the following interface appears
Then go on to the next step.
Upon completion of installation
Go to C: Oracle Middleware user_projects ...
Posted by sliilvia on Tue, 08 Oct 2019 23:56:09 +0200
Weblogic 12.1.3.0 silent installation
I. jdk installation
Install jdk1.7.0_80
Unzip to / usr/local/jdk1.7.0_80
Modify environment variable vi/etc/profile
II. Creating Users
Create a group: group add Weblogic
Create users: useradd-g Weblogic Weblogic
Modify password: passwd weblogic
Enter password***
III. Installation of Weblogic 12C
...
Posted by christo16 on Fri, 04 Oct 2019 09:12:42 +0200