我必须用下面数百行代码来实现某些业务规则
if this
then this
else if
then this
.
. // hundreds of lines of rules
else
that
我们是否有任何设计模式可以有效地实现这一点或重用代码,以便它可以应用于所有不同的规则。我听说过规范模式,它创建了类似下面的东西
public interface Specification {
boolean isSatisfiedBy(Object o);
Specification and(Specification specification);
Specification or(Specification specification);
Specification not(Specification specification);
}
public abstract class AbstractSpecification implements Specification {
public abstract boolean isSatisfiedBy(Object o);
public Specification and(final Specification specification) {
return new AndSpecification(this, specification);
}
public Specification or(final Specification specification) {
return new OrSpecification(this, specification);
}
public Specification not(final Specification specification) {
return new NotSpecification(specification);
}
}
然后是 Is,And, Or 方法的实现,但我认为这不能省去我写 if else (可能是我的理解不正确)......
是否有任何最佳方法来实现具有如此多 if else 语句的此类业务规则?
编辑:只是一个示例示例。A、B、C 等是类的属性。除此之外,还有许多类似的其他规则。我想为此制作一个通用代码。
If <A> = 'something' and <B> = ‘something’ then
If <C> = ‘02’ and <D> <> ‘02’ and < E> <> ‘02’ then
'something'
Else if <H> <> ‘02’ and <I> = ‘02’ and <J> <> ‘02’ then
'something'
Else if <H> <> ‘02’ and <I> <> ‘02’ and <J> = ‘02’ then
'something'
Else if <H> <> ‘02’ and <I> = ‘02’ and <J> = ‘02’ then
'something'
Else if <H> = ‘02’ and <I> = ‘02’ and <J> <> ‘02’ then
'something'
Else if <H> = ‘02’ and <I> <> ‘02’ and <J> = ‘02’ then
'something'
Else if <H> = ‘02’ and <I> = ‘02’ and <J> = ‘02’ then:
If <Q> = Y then
'something'
Else then
'something'
Else :
Value of <Z>