2018-09-09 19:00:01 +03:00

11 lines
184 B
Java

package com.baeldung.annotations;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component;
@Component
@Lazy
public class CarMechanic {
}