I've created a java bean (just very simple for the time being because I want to get it working mostly) called "Folders" I've exported it as a .jar file and placed it in the /WEB-INF/lib/ directory. However, when I try to use it on the intended pages I get this error (I can add the res of the long statement if need be):
Feb 22, 2013 12:02:31 PM org.apache.catalina.core.ApplicationDispatcher invoke
SEVERE: Servlet.service() for servlet jsp threw exception
java.lang.UnsupportedClassVersionError: com/mysite/folders/Folders : Unsupported major.minor version 51.0 (unable to load class com.mysite.folders.Folders)
Here's the bean if it might be what is causing the issue:
package com.mysite.folders;
import java.io.Serializable;
import java.util.ArrayList;
public class Folders implements Serializable {
private String accountNumber;
private String folderName;
private String groupName;
private ArrayList<String> folderNames;
private ArrayList<String> groupNames;
public String getAccountNumber() {
return accountNumber;
}
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}
public String getFolderName() {
return folderName;
}
public void setFolderName(String folderName) {
this.folderName = folderName;
}
public String getGroupName() {
return groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public ArrayList<String> getFolderNames() {
return folderNames;
}
public void setFolderNames(ArrayList<String> folderNames) {
this.folderNames = folderNames;
}
public ArrayList<String> getGroupNames() {
return groupNames;
}
public void setGroupNames(ArrayList<String> groupNames) {
this.groupNames = groupNames;
}
public Folders(String accountNumber, String folderName, String groupName,
ArrayList<String> folderNames, ArrayList<String> groupNames) {
super();
this.accountNumber = accountNumber;
this.folderName = folderName;
this.groupName = groupName;
this.folderNames = folderNames;
this.groupNames = groupNames;
}
}
And finally my statement on the page:
<jsp:useBean id="Folders" scope="session" class="com.mysite.folders.Folders" />
I feel like I did this properly and am uncertain why this wouldn't be working. Any advice or tips would be much appreciated.