Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

20 lignes
438 B

il y a 5 ans
package com.example.sbmongo.service;
import com.example.sbmongo.model.User;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import java.util.List;
public interface UserService {
User save(User user);
Page<User> findByUsername(String username, Pageable pageable1);
List<User> finAll();
User findByUsername(String nelson);
il y a 5 ans
Page<User> findByPage(Pageable pageable);
il y a 5 ans
}