2016-05-16 61 views
0

通常我用「正常」之類的servlet這樣才能顯示在JavaEE的觀點一個觀點:我如何可以顯示註釋

public class MyServlet extends HttpServlet { 

    private static final long serialVersionUID = 1L; 

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException 
    { 
     this.getServletContext().getRequestDispatcher("/WEB-INF/views/myview.jsp").forward(request, response); 
    } 

但我是在一個項目中僅有標註到處都是,我不明白我怎麼可以這樣顯示一些視圖...

@RequestScoped 
@Path("/user") 
@Produces("application/json") 
public class UserController extends Controller{ 

    @Path("v1/{pseudo}") 
    @GET 
    public String getUser(@PathParam("pseudo") String pseudo){ 
    ... 

有人可以幫助我嗎?

THX

+0

它是一個安靜的web服務,所以你應該閱讀。對於這個問題,你可以從你的servlet中調用它。或者注入它? –

回答

0

對不起我的谷歌searsh是壞,我發現我的finnaly答案: @Path( 「/文件」) 公共類DocumentationController延伸的HttpServlet {

@GET 
    public void getHome(@Context HttpServletRequest request, 
         @Context HttpServletResponse response) throws ServletException, IOException { 
     request.getRequestDispatcher("/WEB-INF/views/test.jsp") 
       .forward(request, response); 
    } 

} 

THX爲響應不管怎樣