15 lines
382 B
Java
15 lines
382 B
Java
|
package balise;
|
||
|
|
||
|
import javax.servlet.jsp.JspException;
|
||
|
import javax.servlet.jsp.tagext.SimpleTagSupport;
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/**
|
||
|
* * * SimpleTag handler that prints "Hello, world!"
|
||
|
* * */
|
||
|
public class afficheutilisateur extends SimpleTagSupport {
|
||
|
public void doTag() throws JspException, IOException {
|
||
|
getJspContext().getOut().write( "Bonjour !" );
|
||
|
}
|
||
|
}
|