Spring Data JPA存储库不是使用CommandLineRunner自动创建的

时间:2014-10-29 20:22:07

标签: spring groovy spring-data spring-boot spring-data-jpa

我正在尝试在Groovy中为Spring Boot编写一个简单的Spring Data JPA应用程序。我按照getting started guide进行了一些基本的转换,使其与Groovy和Spring Boot CLI一起使用。

我正在使用Spring Boot CLI(v1.1.8)运行代码:

spring run app.groovy

这会导致错误:

NoSuchBeanDefinitionException: No qualifying bean of type [hello.CustomerRepository] is defined

有没有人知道为什么没有自动创建存储库?我觉得我一定会错过一些简单的东西。以下是包含所有代码的app.groovy文件:

package hello

@Grab("spring-boot-starter-data-jpa")
@Grab("h2")

import java.util.List
import javax.persistence.*
import org.springframework.boot.SpringApplication
import org.springframework.boot.autoconfigure.EnableAutoConfiguration
import org.springframework.context.ConfigurableApplicationContext
import org.springframework.context.annotation.Configuration
import org.springframework.data.repository.CrudRepository

@Entity
class Customer {
    @Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    long id
    String name

    Customer() {}
    Customer(String name) {
        this.name = name
    }
}

interface CustomerRepository extends CrudRepository<Customer, Long> {
    List<Customer> findByName(String name)
}

@Configuration
@EnableAutoConfiguration
class Application implements CommandLineRunner {

    @Autowired
    ConfigurableApplicationContext context

    void run(String[] args) {
        CustomerRepository repository = context.getBean(CustomerRepository.class)
        repository.save(new Customer("Jack", "Bauer"))
    }
}

1 个答案:

答案 0 :(得分:1)

如果您为其提供实际类(即不是.groovy脚本),Groovy CLI应用程序只能扫描JPA存储库。您可以构建一个jar文件并运行它,它应该可以工作:

$ spring jar app.jar app.groovy
$ java -jar app.jar