Konstantin Kolinko wrote:
>
> 2011/7/12 mraible :
>> I'm experiencing a strange issue trying to upgrade to Tomcat 7 on
>> raibledesigns.com (Linux 2.4.37.9). When I hit my contact page and try to
>> send a message, I get the following stack trace:
>>
>&
Hello,
I'm experiencing a strange issue trying to upgrade to Tomcat 7 on
raibledesigns.com (Linux 2.4.37.9). When I hit my contact page and try to
send a message, I get the following stack trace:
SEVERE: Servlet.service() for servlet [jsp] in context with path [] threw
exception [The absolute ur
I'm working on a project where my company has a custom JSP compiler that
they've written and maintained for the last 5 years. It works extremely well
for them and has some unique features - like being able to load JSPs from
remote locations using Spring's Resources API. In other words, they can lo
Do I have to do anything special to get Tomcat to recognize @PostConstruct
when using 6.0.14 out-of-the-box? I'm trying to get it to work with JSF's
RI. Works fine on GlassFish.
Environment: OS X, JDK 5
Thanks,
Matt
--
View this message in context:
http://www.nabble.com/Annotations-%28specifi
I got this working with mod_jk and the following configuration for
mod_rewrite:
RewriteEngine On
# http://domain/?v=1 --> http://domain/app1/?v=1
RewriteCond %{QUERY_STRING} v=([^&]+)
RewriteRule ^(.*)$ /app%1/$1 [L]
# http://domain --> http://domain/app (default ROOT i
I want to configure Apache to front a Tomcat installation. I've done this in
the past with mod_jk. I've got that setup and working. I also configured
mod_proxy and got that working thanks to Graham King's excellent
instructions[1]. I don't know which one is a better solution, but I have
them both