Package org.nutz.mvc.view

Examples of org.nutz.mvc.view.JspView


    else if (uri.endsWith(".jsonp"))
      new JsonpView("jsoncallback").render(req, resp, obj);
    else if (uri.endsWith(".rss"))
      new RssView().render(req, resp, obj);
    else
      new JspView(viewValue).render(req, resp, obj); //这里默认跑jsp
  }
View Full Code Here

TOP

Related Classes of org.nutz.mvc.view.JspView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.