业务逻辑软件选择
您目前使用什么软件来实现业务逻辑?
我们有一个具有非常繁重的业务逻辑的应用程序,它是使用 POJO 和 EJB (2.0) 在 Java 中实现的。
是否有任何更新的软件语言或工具有利于用于编写业务逻辑?
What software do you currently use to implement business logic?
We have an app with very heavy business logic which is implemented in Java with POJO's and EJB's (2.0).
Are there any more recent software languages or tools that are advantageous to use to code business logic?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据“业务逻辑”的具体含义,规则引擎如 Drools 或 Jess 可能是实现它们的更有效的方法。
Depending on what exactly you mean by "Business Logic", a rules engine such as Drools or Jess might be a more efficient way to implement them.
在我看来,要走的路是开始转向使用规则引擎。 我知道我们大力推动开始在我们的一个应用程序中使用规则引擎,该应用程序的决策逻辑非常繁重。 使用规则引擎允许您从业务逻辑中提取一些决策逻辑,并允许以更读者友好的格式指定它。
It seems to me that the way to go is to start making the move towards using a rules engine. I know we have a big push starting to start using a rules engine in one of our applications that is very heavy in decision logic. Using a rules engine allows you to pull some of that decision logic out of the business logic and allows it to be specified in a more reader friendly format.