开发Struts应用时如何保证易维护性?
我曾在 Struts 1.3 上从事过一些项目,但有时应用程序在将来会变得难以修改。我遵循 Dao 对象、业务委托类来确保关注点分离,但我仍然遇到问题。
任何人都可以告诉我遵循什么好的做法,这样我在未来就不会遇到任何问题!
I've worked on a few projects on Struts 1.3 but sometimes the application just becomes difficult to modify in the future. I follow Dao objects , Business Delegator classes to ensure separation of concern but still i am having problems with them.
Can anybody tell any good practices to follow so that i don't have any problems in the fututre !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解耦类的框架(Spring + Struts, Guice + Struts)
行为驱动的功能设计
测试 (jbehave.org)
驱动设计来拥有您的代码
已测试(StrutsTestCase for jUnit)
使代码可测试将有助于使其可维护。如需更多资源,请使用 Google/Stack Overflow 搜索。
framework to decouple classes (Spring + Struts, Guice + Struts)
behavior driven design for functional
tests (jbehave.org)
driven design to have your code
tested (StrutsTestCase for jUnit)
Making the code testable will help having it maintainable. For more resources use Google/Stack Overflow search.