srividya_sharma Report post Posted April 2, 2010 Hello All, For the benefit of all Spring MVC users, I have come up with a simple example. Please find the complete web application attached. Please put in the neccessary Spring jars in the WEB-INF/lib folder, before testing. Please feel free to give your valuable comments and suggestions. Srividya SpringExampleApril2010.zip Share this post Link to post Share on other sites
shinezee Report post Posted May 11, 2010 hello, thx for sharing. but do u have the code of the class chartcontroller? Share this post Link to post Share on other sites
shinezee Report post Posted May 11, 2010 sorry, i've seen it Share this post Link to post Share on other sites
srividya_sharma Report post Posted May 11, 2010 Some users are self solvers! Hope you like the sample. Srividya Share this post Link to post Share on other sites
shinezee Report post Posted May 12, 2010 it works good. I wonder how we can do the same thing with java configuration rather than xml conofiguration? Share this post Link to post Share on other sites
srividya_sharma Report post Posted May 12, 2010 Hi Can you elaborate a bit? Which configuration are you talking about? If it is the chart, then the chart takes xml for data. The xml can be generated within java code too. If this is not what you are talking about, please make me understand. Thanks Srividya Share this post Link to post Share on other sites
shinezee Report post Posted May 12, 2010 Spring 3 offer 3 methods of configuration: xml(ur example), annotation and javaconfig(java based configuration). im trying spring mvc with javaconfig and still working on it. Share this post Link to post Share on other sites
srividya_sharma Report post Posted May 12, 2010 ok, I have tried out xml configuration and annotations. Need to look at JavaConfig. If you have any luck with it, please post the solution. Srividya Share this post Link to post Share on other sites
dhgohel Report post Posted November 5, 2013 package charts; import java.io.IOException;import javax.servlet.ServletException;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.springframework.web.servlet.ModelAndView;import org.springframework.web.servlet.mvc.Controller; public class ChartsController implements Controller{ public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { return new ModelAndView("/WEB-INF/jsp/Summary.jsp"); }} Share this post Link to post Share on other sites
Haritha Report post Posted November 6, 2013 Hi, Could you please let us know about the problem you are facing while using FusionCharts in your Spring application? Awaiting your response. Share this post Link to post Share on other sites
sdeepengineer Report post Posted December 19, 2014 Hi Bindhu, I have the same issue and here is the log from the server [WARN] PageNotFound - -No mapping found for HTTP request with URI [/bramahWebApp/fusioncharts/fusioncharts.js] in DispatcherServlet with name 'mvc-dispatcher'[WARN] PageNotFound - -No mapping found for HTTP request with URI [/bramahWebApp/fusioncharts/themes/fusioncharts.theme.zune.js] in DispatcherServlet with name 'mvc-dispatcher'[WARN] PageNotFound - -No mapping found for HTTP request with URI [/bramahWebApp/fusioncharts/themes/fusioncharts.theme.zune.js] in DispatcherServlet with name 'mvc-dispatcher'[WARN] PageNotFound - -No mapping found for HTTP request with URI [/bramahWebApp/fusioncharts/fusioncharts.js] in DispatcherServlet with name 'mvc-dispatcher'[WARN] PageNotFound - -No mapping found for HTTP request with URI [/bramahWebApp/fusioncharts/themes/fusioncharts.theme.zune.js] in DispatcherServlet with name 'mvc-dispatcher' Share this post Link to post Share on other sites
Nabajeet Report post Posted December 23, 2014 Hi, Welcome to FusionCharts Forum, Please find a FusionCharts sample implemented using Spring MVC in this dropbox link. Here the data is provided using an array implemented in a Java class: https://www.dropbox.com/s/o7ofdzhuqf55dpf/FusionChartsSpringMVC.zip?dl=0 Share this post Link to post Share on other sites
safadig Report post Posted January 7, 2015 Great Example.. Thank you. I am having difficulty using a similar MVC model fro use as Widget in Titanium Alloy for FusionCharts. Titanium Alloy has integration with Highcharts shown at: http://www.appcelerator.com/blog/2013/09/interactive-charts-in-appcelerator-titanium/ Any help is appreciated.. Thanks Share this post Link to post Share on other sites
Nabajeet Report post Posted January 8, 2015 Hi, We do not have any implementation in Titanium Alloy as of now. We shall need some time to implement the same. Thanks. Share this post Link to post Share on other sites