blob: 1892732243af6e17a6fe632b75a319c8fa9da657 [file] [log] [blame]
package example
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.beans.factory.annotation.Qualifier
class TestBean {
@Autowired
BookService bookRepo
@Autowired
@Qualifier("bookService")
def bookService
void doSomething() {
assert bookRepo != null
bookRepo.get(1l)
}
}