選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 

19 行
438 B

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);
Page<User> findByPage(Pageable pageable);
}