14 lines
215 B
Java
14 lines
215 B
Java
|
|
package com.baeldung.failureanalyzer;
|
||
|
|
|
||
|
|
import javax.annotation.Resource;
|
||
|
|
|
||
|
|
import org.springframework.stereotype.Service;
|
||
|
|
|
||
|
|
@Service
|
||
|
|
public class MyService {
|
||
|
|
|
||
|
|
@Resource(name = "myDAO")
|
||
|
|
private MyDAO myDAO;
|
||
|
|
|
||
|
|
}
|