Feeds:
Posts
Comments

Archive for the ‘Tomcat’ Category

jFM

jFM is a file manager written as a java web application. It can be downloaded from http://jfm.dev.java.net/.
jGallery uses some Jakarta Libraries.
jGallery itself is licensed under the Gnu Public License (GPL).
What you need
JDK 1.4 or later, available from http://java.sun.com
Version 5.0 or later of Jakarta Tomcat, available from http://jakarta.apache.org or any other JSP 2.0 compatible web container
if [...]

Read Full Post »

By default Tomcat uses JDK logging. I used the following in log4j.xml [which should go under WEB-INF\classes folder] to enable log4j for a SEAM based web application [infact also for any other web application] in Tomcat. In Maven please place it under, src\main\resources
<?xml version=”1.0″ encoding=”UTF-8″?>
<!DOCTYPE log4j:configuration SYSTEM “log4j.dtd”>
<log4j:configuration xmlns:log4j=”http://jakarta.apache.org/log4j/” debug=”false”>
<appender name=”CONSOLE” class=”org.apache.log4j.ConsoleAppender”>
<param name=”Target” value=”System.out”/>
<layout class=”org.apache.log4j.PatternLayout”>
<param [...]

Read Full Post »