weblogic12c

Error while uploading springboot war file to Weblogic 12.2.1.3 server

我与影子孤独终老i 提交于 2020-12-26 08:25:05
问题 I have created a war of springboot project using maven and did some changes to deploy the same on weblogic. While I am uploading the war file to weblogic server its throwing error as shown in screenshot below. I have added configuration details of my project as well. Can you please help me to resolve this. Spring boot main class import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class

Log4j2 not working in WebLogic 12.2.1

二次信任 提交于 2020-08-03 03:59:50
问题 I am trying to add log4j logging in my web services running under WebLogic 12.2.1 but somehow the logging is not working. This is log4j2.xml in WEB-INF\classes of my WAR file: <?xml version="1.0" encoding="UTF-8"?> <Configuration status="DEBUG"> <Properties> <Property name="log-path">E:/MLM/MyDomain/servers/MyAppSrv01/logs</Property> </Properties> <Appender type="File" name="File" fileName="${log-path}/Services.log" filePattern="${log-path}/Services-%d{yyyy-MM-dd}.log"> <Layout type=

How to acheive servicegen behavior in jwsc task?

◇◆丶佛笑我妖孽 提交于 2020-07-31 04:45:36
问题 Migrating a java soap web service from 11g to 12c which has few operations. Used jwsc task to generate WSDL which generates all the input elements starting with uppercase and "ArrayOf" elements not coming along with wsdl. This behavior was good in 11g where wsdl generation happens through servicegen task, In 12c servicegen not available. Any suggestion to overcome this issue? 回答1: servicegen is from WLS 8.1 (this version had a proprietary webservices jax-rpc runtime). That runtime was removed

WebLogic Bridge Message: “Failure of Web Server bridge: No backend server available for connection…”

狂风中的少年 提交于 2020-07-10 06:05:30
问题 I have an application (packaged software from a vendor) that runs on Oracle WebLogic. There are few operations that, if I try them, I consistently get the following error page: (WebLogic Bridge Message) Failure of Web Server bridge: No backend server available for connection: timed out after 10 seconds or idempotent set to OFF or method not idempotent. The error occurs consistently almost exactly five minutes after I try the operation. The page does not look like the typical error page you

Migrating from Weblogic 11 to Weblogic 12, getting ClassNotFoundException

夙愿已清 提交于 2020-05-30 08:11:48
问题 We are migrating an Application consisting of several ear files from Weblogic 11 to Weblogic 12. Three of the ear files are running well, when we deploy the 4th it throws a ClassNotFoundException on startup. Two of the three running ears aren’t important in this regard. So, the situation is that A.ear runs fine, B.ear fails to start. B.ears pom.xml refers to a module of A.ear as dependency with provided and ejb-client, and using maven-ear-plugin it refers to the module as ejbClientModule. Due

UnexpectedRollbackException - JTA transaction unexpectedly rolled back

北慕城南 提交于 2020-05-16 20:30:49
问题 When I run the below code, I get UnexpectedRollbackException instead of ArrayIndexOutOfBoundsException Environment: Weblogic, Spring, Hibernate, JTA and EJB Code: public class ServiceImpl { @Transactional public void test() { throw new ArrayIndexOutOfBoundsException(); } } public class WebLayerClass { service.test(); } log: Caused by: org.springframework.transaction.UnexpectedRollbackException: JTA transaction unexpectedly rolled back (maybe due to a timeout); nested exception is weblogic

Can MyFaces + CDI be used on WebLogic 12c?

二次信任 提交于 2020-02-20 06:51:07
问题 I've been trying to get this setup running for a couple of days now but still no luck. Here's the test application i've been using: @Named @RequestScoped public class Test { private String test = "test"; public String getTest() { return test; } public void setTest(String test) { this.test = test; } } And in the jsf page: <h:outputText value="#{test.test}"/> Running this sample without MyFaces works fine (renders "test" like it should), but when i deploy MyFaces in the WAR file and do the

Can MyFaces + CDI be used on WebLogic 12c?

那年仲夏 提交于 2020-02-20 06:50:44
问题 I've been trying to get this setup running for a couple of days now but still no luck. Here's the test application i've been using: @Named @RequestScoped public class Test { private String test = "test"; public String getTest() { return test; } public void setTest(String test) { this.test = test; } } And in the jsf page: <h:outputText value="#{test.test}"/> Running this sample without MyFaces works fine (renders "test" like it should), but when i deploy MyFaces in the WAR file and do the