11 lines
184 B
Java
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 {
|
|
|
|
}
|