I am following a Struts2 tutorial. It tells me to import the listed classes. But it does not tell me which jar files to put in the lib folder under WEB-INF
folder.
These are the import statements that I have in my action class:
import com.opensymphony.xwork2.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
I have the following jars in the lib folder. But apparently these are not enough.
Commons-IO 2.2
Commons-lang3-3.0
Commons-logging-1.1.3
Commons-fileupload-1.2
Freemarker-2.3.19
Javaassist- 3.12.1 GA
Ognl-3.0.6
Sqljdbc4
Org.apache.commons.io-2.4
Struts2-core 2.3.16
Xwork-core 2.3.16
Can someone tell me which jars I should put in the lib folder?