Uses of Class
com.tfg.crud.GestorBiblioteca.entity.Libro
Packages that use Libro
Package
Description
-
Uses of Libro in com.tfg.crud.GestorBiblioteca.controller
Methods in com.tfg.crud.GestorBiblioteca.controller with parameters of type LibroModifier and TypeMethodDescriptionmtoLibrosController.editarLibro(Long idLibro, @Valid Libro libro, org.springframework.validation.BindingResult result, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes, org.springframework.ui.Model modelo) Actualiza la información de un libro existente.mtoLibrosController.registrarLibro(@Valid Libro libro, org.springframework.validation.BindingResult result, org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes, org.springframework.ui.Model modelo) Registra un nuevo libro en el sistema. -
Uses of Libro in com.tfg.crud.GestorBiblioteca.entity
Methods in com.tfg.crud.GestorBiblioteca.entity that return LibroMethods in com.tfg.crud.GestorBiblioteca.entity with parameters of type LibroConstructors in com.tfg.crud.GestorBiblioteca.entity with parameters of type Libro -
Uses of Libro in com.tfg.crud.GestorBiblioteca.repository
Methods in com.tfg.crud.GestorBiblioteca.repository that return LibroMethods in com.tfg.crud.GestorBiblioteca.repository that return types with arguments of type LibroModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<Libro> LibroRepository.buscarLibros(String busqueda, Boolean activo, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<Libro> LibroRepository.buscarTodosLibros(String busqueda, org.springframework.data.domain.Pageable pageable) LibroRepository.findByIsbnContainingAndActivoTrue(String isbn) -
Uses of Libro in com.tfg.crud.GestorBiblioteca.service
Methods in com.tfg.crud.GestorBiblioteca.service that return LibroModifier and TypeMethodDescriptionLibroService.buscarLibroPorId(Long id) Busca un libro por su identificador.LibroServiceImp.buscarLibroPorId(Long id) LibroService.editarLibro(Long id, Libro libro) Actualiza la información de un libro existente.LibroServiceImp.editarLibro(Long id, Libro libroEditado) LibroService.registarLibro(Libro libro) Registra un nuevo libro en el sistema.LibroServiceImp.registarLibro(Libro libro) Methods in com.tfg.crud.GestorBiblioteca.service that return types with arguments of type LibroModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<Libro> LibroService.buscarLibros(String busqueda, Boolean activo, org.springframework.data.domain.Pageable pageable) Busca libros aplicando filtros y paginación.org.springframework.data.domain.Page<Libro> LibroServiceImp.buscarLibros(String busqueda, Boolean activo, org.springframework.data.domain.Pageable pageable) LibroService.listarLibros()Obtiene la lista de todos los libros registrados.LibroServiceImp.listarLibros()LibroService.listarLibrosDisponibles(String isbn) Lista de libros disponibles filtrando por ISBN.LibroServiceImp.listarLibrosDisponibles(String isbn) Methods in com.tfg.crud.GestorBiblioteca.service with parameters of type LibroModifier and TypeMethodDescriptionLibroService.editarLibro(Long id, Libro libro) Actualiza la información de un libro existente.LibroServiceImp.editarLibro(Long id, Libro libroEditado) LibroService.registarLibro(Libro libro) Registra un nuevo libro en el sistema.LibroServiceImp.registarLibro(Libro libro)