APPLICATION FAILED TO START
Description:
Field topicoRepository in com.melina.controller.TopicoController required a bean of type 'com.melina.repository.TopicoRepository' that could not be found.
The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)
Action:
Consider defining a bean of type 'com.melina.repository.TopicoRepository' in your configuration.
Pacotes:
package com.melina.repository; public interface TopicoRepository extends JpaRepository<Topico, Long>{
package com.melina.controller; public class TopicoController {
package com.melina.modelo; public class Topico {