wsadmin将文件上传到战争状态

时间:2012-10-04 13:22:14

标签: upload websphere websphere-7 wsadmin

是否可以使用wsadmin(jacl / jython)将文件上传到webapp模块? (fe app.war / custom / uploadedfile.txt)? 我正在使用wsadmin作为独立程序,并希望在开始应用程序之前执行一些postinstall步骤。

websphere 7

谢谢

1 个答案:

答案 0 :(得分:2)

您可以使用“AdminApp更新文件”添加/替换文件。这是AdminApp的文档:

http://pic.dhe.ibm.com/infocenter/wasinfo/v7r0/topic/com.ibm.websphere.nd.doc/info/ae/ae/rxml_adminapp.html

..及其选项:

http://pic.dhe.ibm.com/infocenter/wasinfo/v7r0/topic/com.ibm.websphere.nd.doc/info/ae/ae/rxml_taskoptions.html

以下是这个例子:

AdminApp.update('TheAppName', 'file', ['-operation', 'add', '-contents', '/path/to/your/local/file', '-contenturi', 'path/within/the_app'])