rest - Why Jersey "default" JSP processor is null under embedded Grizzly? -


using grizzly 2.3.2 , jersey 1.8 , according many resources (how implement custom viewprocessor<t> (jax-rs)?, blog) jersey comes w/ off shelf jsp processor, yet debug sessions shows no such processor exist

/**      * set of template processors.      *      * @return set of template processors. */ private set<viewprocessor> getviewprocessors() {      return viewprocessors; // ***this list empty !!!*** } 

i'd grateful if solve it/provide advice how plug jsp processor (not general purpose template engine !) jersey

i've created sample maven project (based on this webapp). uses jersey's jsp viewable , runs on standalone grizzly server.

hope help.


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -