現在、単純な JSP とサーブレットを使用して開発された私のプロジェクトには、次のパッケージがあります。
1-Business package (Contains summed up methods from service package under a business rule)
2-Service package (Contains different services and their implementation - along with factory
method to call a specific implementation of each service)
3-Controller package (All the servlet controls ..)
3-Views (All the jsps)
4-CustomTags (Contain the Custom Tags)
5-Domain (Contains Domain objects)
今struts2を使って同じプロジェクトを実装しようと思っているのですが、導入すべきパッケージを教えてください。サービスとビジネスのパッケージは変更されませんが、コントローラーのパッケージはどうなりますか? すべてのアクションをコントローラー パッケージに配置する必要がありますか? 任意の提案をいただければ幸いです。