Here is an article from IBM entitled "Slow Deployment of Applications with Multiple Java Classes Might Occur on WebSphere Application Server Version 7.0" that describes some approaches that you can take to help reduce the deployment time of your application. The article focuses primarily on the new support in WAS 7 for Java EE 5, which requires WAS to scan all modules, jars, and classes for annotations during deployment.
It suggests the following (seemingly in order of preference):
- downgrade to J2EE 1.4 modules
- utilizing the "metadata-complete" attribute in EE 5 module deployment descriptors
- moving utility jars to shared libs
- moving utility jars from WEB-INF/lib to the root of the EAR
If your application is relatively small and doesn't have any Java EE 5 modules, then this article might not be as applicable. It's possible that there may be some other WAS or OS configuration you could tune to help deployment performance slightly, but if all these factors are identical, it may just be possible that WAS 7 deployment is in fact slower than WAS 6.1. If you suspect a major downgrade in performance, the article doesn't help and there are no other variables, you might consider contacting IBM support.