Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any tricks to speed up RAD 7.5/WebSphere 7 deployment

Recently I started working with RAD and WebSphere on development of web services and found out that it takes a while to republish ear file once changes are made to the code.

Any tricks and suggestions to speed them up?

like image 676
Dima Avatar asked Feb 25 '11 17:02

Dima


2 Answers

There is a known problem about this, see: http://www.ibm.com/support/docview.wss?rs=180&uid=swg21396021

Setting the metadata-complete value to true in your web.xml will prevent scanning for annotations and speed up things.

You can also use the Annotation scanning filter in the manifest file of the module to selectively prevent annotation scanning of jar files.

like image 112
svachon Avatar answered Sep 26 '22 18:09

svachon


Try this and see if there is something in this article

https://www.ibm.com/developerworks/wikis/download/attachments/113606723/radtipsv754.pdf

that make your RAD work faster for you than it is currently.

HTH Manglu

like image 32
Manglu Avatar answered Sep 24 '22 18:09

Manglu