The issue is that at least in 5.5.9 this attribute appears to be
*hard-wired* in JspC so that you can't override the default via a simple
Ant task attribute or command line argument.
I guess I should double check the latest sources. Otherwise I'm
inclined to change this in our own Tomcat dist
Okay, I belatedly checked 5.5.x head.
All the changes I'm looking for are there. They're recent as they're
not in either 5.0.30 or 5.5.9.
--
Jess Holle
Jess Holle wrote:
The issue is that at least in 5.5.9 this attribute appears to be
*hard-wired* in JspC so that you can't override the def
I believe Smap is suppressed by default in JSPC. There is
a switch to term it on (-smap ?). Don't remember what the
ant task attribute name is (smapSuppressed="false" ??).
-Kin-man
On Thu, 2005-10-27 at 09:14, Jess Holle wrote:
> Is this a more appropriate question for the dev list?
>
> --
> J
Not to reply to my own e-mail but after reading the sources this would
appear to be squarely a Tomcat developer issue.
JspC.isSmapSuppressed() always returns true -- affording no opportunity
to precompile while still generating JSR-45 debug info.
While that's a great default for production, I
P.S. If this is as simple as adding a field for this property and a
setter, then I'll go ahead and do this in my own Tomcat distro if
nothing else...
--
Jess Holle
Jess Holle wrote:
Not to reply to my own e-mail but after reading the sources this would
appear to be squarely a Tomcat develope
Is this a more appropriate question for the dev list?
--
Jess Holle
--- Begin Message ---
I have noticed that when I use an Ant script based on that documented in
the Tomcat docs to precompile all my JSPs the resulting JSPs do not
support source-level (JSR-45) debugging.
I thought I was doin