21 lines
518 B
Java
21 lines
518 B
Java
package com.baeldung.takes;
|
|
|
|
import java.io.IOException;
|
|
import java.sql.SQLException;
|
|
|
|
import org.takes.Request;
|
|
import org.takes.Response;
|
|
import org.takes.Take;
|
|
import org.takes.rs.RsHtml;
|
|
import org.takes.rs.RsVelocity;
|
|
|
|
public final class TakesIndex implements Take {
|
|
|
|
@Override
|
|
public Response act(final Request req) throws IOException, SQLException {
|
|
|
|
return new RsHtml(new RsVelocity(this.getClass().getResource("/templates/index.vm") ,new RsVelocity.Pair("userName", "Anshul")));
|
|
}
|
|
|
|
}
|