首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

weblogic配置简单有关问题集锦

2013-09-11 
weblogic配置简单问题集锦1、后台异常2011-5-11 上午10时16分10秒 CST Warning HTTP BEA-101162 U

weblogic配置简单问题集锦

1、后台异常

<2011-5-11 上午10时16分10秒 CST> <Warning> <HTTP> <BEA-101162> <User defined listener org.springframework.web.context.ContextLoaderListener failed: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory' defined in ServletContext resource [/WEB-INF/biz-context-hibernate.xml]: Invocation of init method failed; nested exception is org.hibernate.HibernateException: Errors in named queries: GraphSession.findActiveNodesByProcessInstance, GraphSession.deleteJobsForProcessInstance, 。。。。。。

在设置在“D:\bea\wlserver_10.3\server\lib\consoleapp\webapp\WEB-INF”下的weblogic.xml文件 weblogic8.0解决这个问题是改更weblogic.xml把一个属性更为true

在启动Weblogic的脚本中(位于所在Domian对应服务器目录下的startServerName),增加set MEM_ARGS=-Xms32m -Xmx200m,可以调整最小内存为32M,最大200M

?

3、指定默认线程的最大最小值。

方法一:修改启动脚本参数
在启动脚本中,增加如下参数

%JAVA_HOME%\bin\java %JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS%-Dweblogic.Name=%SERVER_NAME% -Djava.security.policy=%WL_HOME%\server\lib\weblogic.policy-Dweblogic.threadpool.MinPoolSize=100 -Dweblogic.threadpool.MaxPoolSize=500 %PROXY_SETTINGS% %SERVER_CLASS%

方法二:修改config.xml
在config.xml中,增加如下参数

<server><name>AdminServer</name><self-tuning-thread-pool-size-min>100</self-tuning-thread-pool-size-min><self-tuning-thread-pool-size-max>500</self-tuning-thread-pool-size-max><listen-port>7923</listen-port><listen-address></listen-address></server>

经过测试,以上两种方法适合weblogic9,10,11g


我的异常网推荐解决方案:org.springframework.beans.factory.BeanCreationException:,http://www.myexception.cn/j2ee/10759.html

热点排行