You could start by using the JSTL instead of most of the logic and bean tags. Other than that, your application will be dependant on Struts, and there's no way around it, other than
- not using any of what the framework offers, but then why use Struts in the first place
- build some kind of super framework which use Struts behind the scene, but could be migrated to another underlying MVC framework. But you'll probably lose more time creating and migrating the framework than it takes to build the whole app using Struts and migrate the app to another framework.
Struts1 is obsolete anyway, and shouldn't be used for new projects. Prefer more modern frameworks such as Stripes or Spring MVC.