package com.example.spring; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Component public class Maths { @Value("100") private int b; public int getB() { return b; } public void setB(int b) { this.b = b; } public int add(int a) { return a + b; } }