i am creating exam portal in spring boot but i am stucked at one error which is as follows
here following is the code please give me the proper solution which will really work i have tried to run it multiple times but it is not working import com.exam.model.user; import com.exam.model.userRole; import com.exam.repo.RoleRepository; import com.exam.repo.UserRepository; import com.exam.service.UserService; import org.apache.catalina.Store; import org.springframework.beans.factory.annotation.Autowired; import java.util.Set; public class UserServiceImpl implements UserService { @Autowired private UserRepository userRepository; @Autowired… Read More i am creating exam portal in spring boot but i am stucked at one error which is as follows