tags:

views:

52

answers:

0

My requirement is to dynamically populate graphs on the basis of data retrieved from the database. The jars included are as follows:

flamingo-service-jsf-1.6.1-SNAPSHOT.jar
amf-serializer-1.6.1-SNAPSHOT.jar
common-annotations.jar
commons-beanutils.jar
commons-collections.jar
commons-digester.jar
commons-logging.jar
el-api-1.0.jar
el-impl-1.0.jar
fiji-api-1.0.0.jar
fiji-ui-1.0.0.jar
jsf-api-1.2_09.jar
jsf-facelets-1.1.14.jar
jsf-impl-1.2_09.jar
jstl-1.2.jar
laguna.jar
richfaces-api-3.2.2.CR3.jar
richfaces-impl-3.2.2.CR3.jar
richfaces-ui-3.2.2.CR3.jar
standard.jar

My Bean is as follows:

import java.util.ArrayList; 
import java.util.Date; 
import java.util.LinkedHashMap; 
import java.util.Map; 
import java.util.Random; 


public class GraphBean { 

    private Integer data; 
    private  Map<String, Integer> monthMap = new LinkedHashMap<String,Integer>(); 
    private ArrayList<String> names = new ArrayList<String>(); 
    private ArrayList<String> colors = new ArrayList<String>(); 
    Random rnd = new Random(new Date().getTime()); 

    public GraphBean() { 
        super(); 
        generateData(); 
    } 

    private void generateData() { 
        monthMap.put("January", getData()); 
        monthMap.put("February", getData()); 
        monthMap.put("March", getData()); 
    } 

    public Map<String, Integer> getMonthMap() { 
        return monthMap; 
    } 

    public ArrayList<String> getNames(){ 
        names.add("Motherboards"); 
        return names; 
    }  

    public ArrayList<String> getColors(){ 
        colors.add("#5db2c2"); 
        return colors; 
    }  

    public Integer getData() { 
        data = rnd.nextInt(50); 
        return data; 
    } 
} 

My jsp page is as follows:

<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> 
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> 
<%@ taglib uri="http://exadel.com/fiji" prefix="fiji" %> 

<html> 
     <head> 
      <title>enter your name page</title> 
     </head> 
     <body>  <f:view> 
            <fiji:columnChart id="columnChartOne" value="#{GraphBean.monthMap}" title="One-series Column Chart" barCaption="none" 
                              barColors="#{GraphBean.colors}" captionX="Months" captionY="Amount" toolTipValue="{y} {name} are sold in {x}" 
                              subtitle="Hardware sales per month" width="400" height="400"> 
                <fiji:chartData type="name" value="#{GraphBean.names}" /> 
            </fiji:columnChart> 
       </f:view>  
    </body> 
    </html>

On execution of the page following either of the execption is encountered.

1. org.apache.jasper.JasperException: org.apache.jasper.JasperException: Unable to load class for JSP
2. org.apache.jasper.JasperException: The absolute uri: http://exadel.com/fiji cannot be resolved in either web.xml or the jar files deployed with this application

Please suggest me a solution. I am trying for dynamic chart in my jsp page using jsf tags for the last 2 weeks.