As far as I know Spring Framework doesnโt provide any mechanism to encapsulate Spring beans other than having separate contexts. So when you have public class registered in Springโs Inversion of Control container, it can be autowired in any Spring bean from same context configuration. This is very powerful but it is also very dangerous. Developers can easily couple beans together. With lack of discipline team can easily shoot themselves in foot. Unfortunately I was working on one monolithic project where team was shooting themselves into foot with submachine gun. Wiring was breaking layering rules often. Nobody could easily follow what is dependent on what. Bean dependency graph was just crazy. This is serious concern in bigger applications.
Luckily there is one simple way how to encapsulate Spring bean. Spring works nicely with default access modifier on class level. So you can create package private bean, which can be used only within current package. Simple and powerful. Letโs take a look at example:
package net.lkrnac.blog.spring.encapsulatebean.service;
import org.springframework.stereotype.Service;
@Service
class AddressService {
public String getAddress(String userName){
return "3 Dark Corner";
}
}This simple bean is wired into another one within same package:
package net.lkrnac.blog.spring.encapsulatebean.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class UserService {
private AddressService addressService;
@Autowired
public UserService(AddressService addressService) {
this.addressService = addressService;
}
public String getUserDetails(String userName){
String address = addressService.getAddress(userName);
return String.format("User: %s, %s", userName, address);
}
}Main context just scans both beans:
package net.lkrnac.blog.spring.encapsulatebean;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan
@EnableAutoConfiguration
public class Application {
}Here is test to prove it works fine:
package net.lkrnac.blog.spring.encapsulatebean;
import net.lkrnac.blog.spring.encapsulatebean.service.UserService;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Application.class)
public class ApplicationTests {
@Autowired
private UserService userService;
@Test
public void isPackagePrivateBeanCalled(){
//GIVEN - spring context defined by Application class
//WHEN
String actualUserDetails = userService.getUserDetails("john");
//THEN
Assert.assertEquals("User: john, 3 Dark Corner", actualUserDetails);
}
}I believe everybody should consider using default access modifier for every new bean. Obviously there would need to be some public bean within each package. But at not every bean. Source code is on GitHub.
| Reference: | How to encapsulate Spring bean from our JCG partner Lubos Krnac at the Lubos Krnac Java blog blog. |
Thank you!
We will contact you soon.
Lubos KrnacDecember 29th, 2014Last Updated: December 28th, 2014

This site uses Akismet to reduce spam. Learn how your comment data is processed.