|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
几个常用配置文件:
1)<Maximo root> \applications\Maximo\properties\maximo.properties.
系统全局属性设置 数据库连接 、连接属性等 如:
mxe.name -Name to bind the MXServer server object to in the RMI registry.
mxe.rmi.port -RMI communication port. If set atzero, RMI uses any available port.
You can select another available port number.
mxe.db.schemaowner -Owner of the database schema.
mxe.db.driver - Specification of JDBC Driver.
mxe.db.url - JDBC URL of database
mxe.db.user -Database user that the server uses to attach to the database server.
mxe.db.password -Password for the database user name.
数据库属性配置(重要参数的描述如下)
§mxe.db.url:默认的URL是mxe.db.url=jdbcracle:thindbserver:1521:sid
§dbserver是数据库服务器的服务器名称。1521是默认的Oracle 端口号。sid是Oracle 系统标识符
。
§数据连接池需要的参数描述:
§mxe.db.initialConnections:启动应用程序服务器时要创建的数据库连接数量
§mxe.db.maxFreeConnections:连接池中自由数据库连接的最大数量
§mxe.db.minFreeConnections:为分配更多的连接连接池中需要的自由数据库连接的最少数量
§mxe.db.newConnectionCount:当连接池中可用的自由连接数量最少时需要新建的连接数量
§与事务处理相关的参数设置:
§mxe.db.transaction_isolation:定义事务的隔离级别
§mxe.db.autocommit:定义是否自动提交事务
一般前一行//开头是 系统属性参数说明
<Maximo root> \tools\maximo
<Maximo root> \tools\maximo\log
附件 共享应用服务器OS系统 root \doclinks (WIN: C:\doclinks UNIX: /HOME/DOCLINKS)
在CONSOLE 发布新应用 Target Module
2)<Maximo root> applications\maximo\maximouiweb\webmodule\WEB-INF\web.xml
<Maximo root> \applications\maximo\mboweb\webmodule\WEB-INF\web.xml
登录以及权限控制方式 APP还是连接LADP-集中的AD域同步控制 。。
3)<Maximo root> \deployment 正式MAXIMO应用的 EAR文件BUILD
run: buildmaximoear、 buildhelpear 适用以下情形:
(修改了系统的 .XML文件 做了变更开发CLASS文件生成、帮助修改、maximo.properties修改)
4)日志文件: \IBM\WebSphere\AppServer\profiles\Custom01<系统pfile名称>\maximo\logs
注意 maximo.log
5)设置帮助文件:
<env-entry>
<description>URL of the root of MAXIMO Application Help</description>
<env-entry-name>helpurl</env-entry-name>
<env-entry-type>java.lang.String</env-entry-type>
<env-entry-value>http://myhelpserver:9000/maximohelp</env-entry-value>
</env-entry>
6)每次更新如果客户端有问题,请先刷新:
注意设置 工具-IE选项-常规 页面-临时文件(设置)-自动(检查所存网页更新版本)
在WIN安装DB2时 建议先删除 WINDOWS用户环境变量;
7)Bulletin Board 公告板
------------------------------ -------------------------------
1 配置MAXIMO二次开发环境2008年07月03日 星期四 15:50开发工具选择:Eclipse 3.1
开发的JDK :1.4.2
配置开发环境:
1) 将maximo安装目录下的class文件打包(不打包也可以,此处为方便管理)
maximo安装目录\applications\maximo\businessobjects\classes\下面的psdi目录压缩成
zip文件,bpsdi.zip
2) 在Eclipse3.1中,打开windows->preferences 窗口
选择:
java ->build path->user libraries选项目
把刚才的两个ZIP文件,添加进来,保存!取名maximo62
3) 添加J2EE 类库
在maximo安装目录中,找到j2ee.jar和jdom.jar这两个类库文件
加到user libararies中,取名j2ee
至此,maximo的基本开发环境搭配完成,可以进行二次开发了!
已上 有些学习自网络 不太记得原作者,请谅解。。 |
|