i am new to java. I was trying to create a login module.
I have this in a package.. Now I want to call this login() method from jsp file how can I do that using (or not using) userController object.
package com.lagan.controller;
import java.util.List;
import com.lagan.dao.userDao;
import com.lagan.dto.loginDto;
import com.lagan.dto.userDto;
public class userController {
public List<loginDto> login() {
userDao dao=new userDao();
return dao.login();
}
}