Hi,
I need to record all debug statements (System.out.println("xyz")) from my
application in catalina.out log. When I start Tomcat it creates the log
file and only records statements till the server startup. But after that,
none of the System.out.println() statements present in my JSPs get
rec
Hi Team,
Is there any Tomcat setting through which all the JSPs available in my
package will get compiled while I deploy the application. Normally a JSP
gets compiled while it is being requested and gets collected inside Work
folder. I want that all the JSPs in my package should get compiled wh
Hi Andre,
Finally it worked!!! Thanks a ton.
Below is the setting that I used.
ProxyPassMatch ^/.*\.(gif|jpg|css|png)$! http://localhost:8080/
ProxyPassMatch ^/(.*/servlet/.*)$ http://localhost:8080/$1
ProxyPassMatch ^/(.*\.jsp)$ http://localhost:8080/$1
Now, One final question.
Hi Andre,
Finally it worked!!! Thanks a ton.
Below is the setting that I used.
ProxyPassMatch ^/.*\.(gif|jpg|css|png)$! http://localhost:8080/
ProxyPassMatch ^/(.*/servlet/.*)$ http://localhost:8080/$1
ProxyPassMatch ^/(.*\.jsp)$ http://localhost:8080/$1
Now, One final question.
Hi Andre,
I apologize for not following the mailing rule. Actually this is the first
time that I am taking the help of such a forum.
Before I begin asking you anything I want to thank you for such a detailed
explanation.
To begin with, answer to your question - "why do you want to serve these
regarding Apache Webserver static file configuration
Tapajyoti Roybarman wrote:
> Hi,
>
> Could you please let me know that how can I serve static content like
> image files, css files through Apache Webserver instead of Tomcat?
That is the normal thing that an Apache httpd we
Hi,
Could you please let me know that how can I serve static content like
image files, css files through Apache Webserver instead of Tomcat? Please
let me know about all the required configurations in detail. I am
connecting Apache webserver and Tomcat using mod_proxy_http module. Also,
please