package com.example.spring; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @Component public class MathsUser { @Autowired private Maths maths; public void doTask() { int result = maths.add(10); System.out.println(result); } }