How can I use lambdaj in my application

This may seem like a silly question, but how can I start using the lambdaj library? I downloaded the lambdaj.jar and placed it in the lib directory in my webapp along with other jar files. But I cannot import any of the classes. Do I need to build a jar using maven? Thanks in advance!

David

+2


source to share


2 answers


Just add it to the rest of the libraries for compilation and you need to package it with the rest of the jars when building / packaging.



+4


source


You also need to add the jar to CLASSPATH.



+2


source







All Articles