Linux下安装weblogic9.2

Linux下安装weblogic9.2

1、准备文件
下载地址
http://www.oracle.com/technology/software/products/ias/htdocs/wls_main.html

得到文件
server923_linux32.bin

2、新增用户和组
新建组
groupadd weblogic
新建用户
useradd -g weblogic -G weblogic -d /usr/local/bea weblogic
设置密码
passwd weblogic

3、安装weblogic
切换用户
su weblogic

切换到文件目录
cd /usr/tmp

赋予权限
chmod a+x ./server910_linux32.bin
//给可执行权限以便于安装
./server910_linux32.bin -mode=console
//开始安装

按照操作提示一步一步向下

安装完成

3、配置weblogic
配置domain

命令
/usr/local/bea/weblogic92/common/bin/config.sh

一步一步操作,建立domain完成

4、配置发布
修改设置文件/usr/local/bea/user_projects/domains/kiko9/bin/setDomainEnv.sh
JAVA_OPTIONS="${JAVA_OPTIONS} -Ddefault.client.encoding=UTF-8 -Dfile.encoding=UTF-8 -Duser.language=zh -Duser.region=CN"

CLASSPATH="${CLASSPATH}:${LONG_DOMAIN_HOME}/config"

准备war包和配置文件
拷贝properties配置文件到 /usr/local/bea/user_projects/domains/kiko9/config

启动weblogic
/usr/local/bea/user_projects/domains/kiko9/bin/startWebLogic.sh
停止weblogic
/usr/local/bea/user_projects/domains/kiko9/bin/stopWebLogic.sh

登陆weblogic的console页面发布war包

发布启动后报错,错误如下:
org.springframework.beans.NotWritablePropertyException: Invalid property 'mappingLocations' of bean class [org.springframework.orm.ibatis.SqlMapClientFactoryBean]: Bean property 'mappingLocations' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?

在weblogic加载classpath时,先加载spring和ibatis的配置文件

lib位置一:
/usr/local/bea/user_projects/domains/kiko9/config/lib
vi readme.txt
This directory holds jar files that are added to the system classpath of the server,
when the server?s Java virtual machine starts.

lib位置二:
/usr/local/bea/user_projects/domains/kiko9/lib
vi readme.txt
This is the domain library directory and is usually located at $DOMAIN_DIR/lib.

The jars located in this directory will be picked up and added dynamically to the end of the server classpath at server startup. The jars will be ordered lexically in the classpath. The domain library directory is one mechanism that can be used for adding application libraries to the server classpath.

It is possible to override the $DOMAIN_DIR/lib directory using the -Dweblogic.ext.dirs system property during startup. This property specifies a list of directories to pick up jars from and dynamically append to the end of the server classpath using java.io.File.pathSeparator as the delimiter between path entries.

拷贝JAR包到lib位置二
/usr/local/bea/user_projects/domains/kiko9/lib

拷贝如下jar包:
2008-12-16 15:32         1,545,023 aspectjweaver.jar
2008-12-16 15:32            21,950 commons-logging-1.0.jar
2008-12-16 15:32           384,363 ibatis-2.3.4.726.jar
2008-12-16 15:32           391,834 log4j-1.2.15.jar
2008-12-16 15:32           133,575 oscache-2.4.1.jar
2008-12-26 20:42           353,444 quartz-1.5.1.jar
2008-12-16 15:32         2,949,500 spring-2.5.6.jar

再次启动,应用成功启动

注释:其实启动错误也不关weblogic的事情,同事查出来是自己的war里面打的lib有冲突,删除了里面的冲突就好了
应为已经有两个spring-2.5.6.jar
所以删除以下两个jar
spring-core-2.5.6
spring-ibatis-2.0.8

你可能感兴趣的:(spring,linux,ibatis,quartz,weblogic)