Tag Archives: configuration

Sawing through the Java Loggers

Sawing through the Java Loggers I know what your thinking, “It’s just logging!”. This small, yet common part of our applications, provides developers, QA and troubleshooters with information to help in determining code execution sequences, inspecting data values and trouble … Continue reading

Posted in Jakarta Commons Logging, Java Util Logging, LogBack, Logging, SLF4J | Tagged , , , , , | 4 Comments

Gemini Blueprint – Converting from Spring OSGi

Eclipse Virgo OSGi Enthusiasts, like myself, can now switch from the Spring OSGi namespace to the Eclipse Gemini Blueprint namespaces for bundles. Maven Dependencies <!– Gemini Blueprint OSGi –> <properties> <gemini.blueprint.version>1.0.0.RELEASE</gemini.blueprint.version> </properties> … <dependency> <groupId>org.eclipse.gemini</groupId> <artifactId>org.eclipse.gemini.blueprint.extender</artifactId> <version>${gemini.blueprint.version}</version> <exclusions> <exclusion> <groupId>org.springframework</groupId> … Continue reading

Posted in Blueprint, Eclipse, Gemini, Java, OSGi, Spring, Virgo | Tagged , , , , , , | Leave a comment

tcServer Logging with Logback & SLF4J

Logback and SLF4J provide better logging for java applications. To configure VMware vFabric tcServer to take advantage of the speed and flexibility of Logback use the following steps as a starting point. Download the tcServer Developer Edition free: http://www.springsource.com/developer/tcserver This … Continue reading

Posted in Jakarta Commons Logging, Java, Java Util Logging, LogBack, Logging, SLF4J, Spring, Spring Insight, tcServer, Tomcat | Tagged , , , , , , | Leave a comment

Quick Install for tcServer 2.5 with Spring Insight in STS

Installation & Config Download tcServer Developer’s Edition – current version is 2.5.1 (free registration required) Make a directory for tcServer (such as /opt/tcserver or c:\tcserver) Unzip the downloaded file into that directory Type at command line in your tcServer directory … Continue reading

Posted in Eclipse, Installation, Spring, Spring Insight, STS, tcServer, Tomcat | Tagged , , , , , , | 3 Comments

Spring Expression Language (SpEL) Predefined Variables

Spring 3.0 introduced Spring Expression Language (SpEL). There are two variables that you have available “systemProperties” and “systemEnvironment“. SpEL allows us to access information from our beans and system beans information at runtime (late binding). These can be applied to … Continue reading

Posted in SpEL, Spring, Spring Framework | Tagged , , , , , , , | 2 Comments

Spring 3.1 – What’s Up and Coming

Spring 3.1.0 M1 is expected to be released on Feb 11, 2011. There are many exciting new features expected for the final release which is scheduled for June 2011. Environment Profiles Many times we want separate configuration for different environments … Continue reading

Posted in Grails, Groovy, Java, REST, Spring, Spring Framework, Spring MVC, Testing, Web Services | Tagged , , , , , , , , , , , , , , , | 4 Comments