package test; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class JavaAnnotated { @Bean public JavaSpringBean buildBeanJNew() { return new JavaSpringBean(3); } @Value("#{buildBeanJNew.value + 1}") private int newValue; }