Make Spring Service Classes Final?
Posted
by fastcodejava
on Stack Overflow
See other posts from Stack Overflow
or by fastcodejava
Published on 2010-04-17T05:56:41Z
Indexed on
2010/04/17
6:03 UTC
Read the original article
Hit count: 249
Can I make the spring service classes final? Is there any harm doing that? Nobody is going to extend the class. Is there any issue?
public final class MyService {
// Depedencies go here.
}
© Stack Overflow or respective owner