re: jBPM开发入门指南(3) 风人园 2007-01-16 13:58
问一个问题,我配置完后进行部署,但是log提示找不到database 'jbpm'
我用mysql作数据库,需要手动创建database吗?还是程序会自动生成数据库中的相关数据库和表
re: 为Struts 2.0做好准备 风人园 2006-11-01 17:42
我按照你的步骤,但是老是提示说下面的资源不可用,这是怎么回事?
The requested resource (/strutstest/HelloWorld) is not available.
strutstest是项目名
再请问一个问题,除了 pie可以,其他的可以吗?
我用的是jfreechart 1.01,我通过设定
plot.setURLGenerator(new StandardPieURLGenerator("barview.do?from=xxx"));
可以实现链接,但是,其他的图好像没有这个方法,只有piePlot才有这个方法
re: 为Struts 2.0做好准备 风人园 2006-10-27 14:36
请问一个问题,我按照你的配置,他出现如下错误,在
classpath下加了 struts.properties这个文件还是说没有找到
Could not find or error in struts.properties
java.lang.IllegalStateException: struts.properties missing
请问有遇到这种问题吗 ?
对不起,你那里面没有源代码啊 ,只有发布的程序,你再看一下
现有就这个问题了,我在jsp或者 用javabean调用都可以实现链接 ,但是在action中就没有办法把map的资料传到页面
下面是我action的代码
public ActionForward list(ActionMapping actionMapping,
ActionForm actionForm, HttpServletRequest request,
HttpServletResponse response) throws Exception {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
HttpSession session = request.getSession();
DefaultPieDataset data = new DefaultPieDataset();
data.setValue("高中以下", 370);
data.setValue("高中", 1530);
data.setValue("大专", 5700);
data.setValue("本科", 8280);
data.setValue("硕士", 4420);
data.setValue("博士", 80);
JFreeChart chart = ChartFactory.createPieChart3D("月统计比例图", data, true, true, true);
PiePlot3D plot = (PiePlot3D)chart.getPlot();
plot.setURLGenerator(new StandardPieURLGenerator("barview.jsp"));
chart.setBackgroundPaint(java.awt.Color.white);
plot.setToolTipGenerator(new StandardPieToolTipGenerator());
StandardEntityCollection sec = new StandardEntityCollection();
ChartRenderingInfo info = new ChartRenderingInfo(sec);
String filename = ServletUtilities.saveChartAsJPEG(chart, 500, 300, info, session);
//FileOutputStream fos_jpg = new FileOutputStream("d:\\fruit.jpg");
//ChartUtilities.writeChartAsJPEG(out,100, chart, 500, 300, info);
ChartUtilities.writeImageMap(out, "map0", info, false);
String graphURL = request.getContextPath() + "/servlet/DisplayChart?filename=" + filename;
request.setAttribute("filename", filename);
request.setAttribute("graphURL", graphURL);
return actionMapping.findForward("list");
}
能不能把你的有关map部分的演示源代码发给我,map部分一直没有测试成功。谢谢
wuxufeng@ivo.com.cn