15 lines
369 B
Java
15 lines
369 B
Java
package command;
|
|
|
|
import java.io.IOException;
|
|
|
|
import javax.servlet.ServletException;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
public class HomeCommand implements Command {
|
|
public String exec(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{
|
|
|
|
return "home.jsp";
|
|
}
|
|
}
|