English 中文(简体)
缩略语
原标题:weblogic 11g R1

I have prepared my ejb jars and war using weblogic.appc weblogic 11g R1, all compilations were fine, I have prepared ear and deployed in weblogi server .I am getting belows erorr. afte deployment and ear status went to failed state.

我并不是所有的人都使用这个词汇。 帮助。 OHW 档案。 不知道。

能够说明这一问题是如何解决的。

[HTTP:101216]Servlet: “OHW”在网上应用中未能在启用前装上“cbcm”。 javax.servlet。 ServletException: [HTTP:101249][ServletContext@13559 [app:cbcm model:cbcm 途径: 自助餐厅。 OHW不能装上服务器,因为所申请的电池组没有在教室内找到。 网上应用:

最佳回答

查阅您的WAR网站web.xml,对于Oracle的帮助档案和该服务器来说,有<编码>servlet和

评论这些内容。

问题回答
I received the same error as "failed to preload on startup in Web application:".

Below is how I am able to resolve the error.

in your web.xml, check if following property is present

<load-on-startup>0</load-on-startup>

this property is to load your bundled artifacts during the server restart itself. This was the cause of the issue because there were some jar file which weblogic server required to load before the loading of our bundled artifacts. Now since server is not yet started completely and all the libraries required to our application is not yet loaded, hence server is throwing "failed to preload on startup in Web application:".

The solution to this is remove load-on-startup from web.xml and That s it!!




相关问题
VS 2008 : How to publish with out DLLs?

I have developed a web application in Visual Studio 2008 and want to publish it in to the production server. I see a publish option there.But its producing files with DLL. I dont want to publish only ...

Apache: Deploying a new site to the server

I have a site currently live on a domain. I would like to switch it to a new site, that is currently in a password protected sub directory on this server. I have a "Site Maintenance in Progress" page....

Appropriate strategy for tagging and hotfixing with git

I was wondering if the strategy I m using for tagging and hotfixing tags (which then I use for deploying rails applications) with git is appropriate. For tagging I just tag a commit of the master ...

Pylons deployment questions

I m a beginner with Pylons and I ve mostly developed on my localhost using the built-in web server. I think it s time to start deployment for my personal blog, I have a Debian Lenny server with ...

Do I want Publish or Release Build in VB.net?

I wrote a little (like 40 lines little) Winforms application with VB.net in Visual Studio 2010. Now I ve released the code as a Google Code project. It s easy for a developer to get the source but I d ...

Need advice on my PHP development solution

Here is how our current php development solution is set up: Each developer work on their local machine. Each developer commit their change to a common SVN server (intranet). A commit hook upload the ...

loading from JAR files during deployment vs development

when i am loading some data into my java program, i usually use FileInputStream. however i deploy the program as a jar file and webstart, so i have to use getRessource() or getRessourceAsStream() to ...