Java EE Producer
******************************************************************************** package boundary; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; @Path("testrest") public class testresr { @GET @Produces("text/html") public String test1() { return "<html>" + "<head>" + "<title>TODO supply a title</title>" + "<meta charset=\"UTF-8\">" + "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">" + "</head>" + "<body>" + "<div>TODO write content</div>" + "</body>" + "</html>"; } } ********************************************************************************


@2024