TomEE Logging Configuration

Because TomEE comes with a java.util.Logging Logger which I really dislike, I decided to change the logger to log4j through slf4j. Here are the steps to achieve this: Create a folder _tomee_/bin/log and place the following libraries in it: jul-to-slf4j-1.7.5.jar, log4j-1.2.17.jar, slf4j-api-1.7.5.jar, slf4j-log4j12-1.7.5.jar Remove slf4j-*jdk*.jar and slf4j-*api*.jar from _tomee_/lib Create a log4j.properties file in _tomee_/bin/log/config Create a file named setenv.sh in _tomee_/bin

TomEE Logging Configuration Read More »

PostgreSQL 9.3 Debian

To install PostgreSQL 9.3 I used the following steps as root: echo “deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -c | awk ‘{print $2}’`-pgdg main” > /etc/apt/sources.list.d/postgre.list && wget –quiet -O – https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add – apt-get update && apt-get dist-upgrade && apt-get install postgresql-9.3  

PostgreSQL 9.3 Debian Read More »