2017-05-06 35 views
-4
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled. 
2017-05-06 20:50:51.844 ERROR 2264 --- [   main] o.s.b.d.LoggingFailureAnalysisReporter : 

*************************** 
APPLICATION FAILED TO START 
*************************** 

Description: 

Field petRepo in com.pet.controller.PetController required a bean of type 'com.pet.repository.PetRepository' that could not be found. 


Action: 

Consider defining a bean of type 'com.pet.repository.PetRepository' in your configuration. 
+0

您可以发布您的PetController和PetRepository代码? –

回答

0

尝试加入@Repository注释到您的回购类

@Repository 
    public interface PetRepository <T,ID extends Serializable> extends CrudRepository{ 
}