2017-05-06 4 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

Können Sie nach Ihrem Code für PetController und PetRepository? –

Antwort

0

try @Repository Anmerkung zu Ihrer Repo-Klasse Hinzufügen

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