小编obo*_*ain的帖子

Stacktrace不会在Glassfish 4.1 Cluster日志中打印

在Glassfish上进行我们的第一次集群设置(4.1).应用程序(EAR)级别日志(例如打印堆栈跟踪)似乎没有到达(GF-dir)/domains//logs/server.log或(GF-dir)/ nodes /(node-name)中的server.log )/(例如名称)/server.log

(文档中没有cluster.log)

我们没有更改logging.properties中的任何默认日志记录选项.

当前日志仅显示与集群和实例相关的信息.

java logging glassfish cluster-computing glassfish-4

9
推荐指数
1
解决办法
886
查看次数

停止执行Dart程序,直到按下某个键

有没有办法在按下某个键之前停止执行Dart进程?

这将是这样的:

  • 在html文件中:
<input id="nextstep" type="button" value="nextstep" />
Run Code Online (Sandbox Code Playgroud)
  • 在dart文件中:
void main() { 
  while(true) {
    // Do something here to pause the loop 
    // until the nextstep button is pressed
  } 
}
Run Code Online (Sandbox Code Playgroud)

dart

4
推荐指数
1
解决办法
287
查看次数

如何卸载generator-jhipster

我已经jhipster-generator使用yarn.

今天,我需要卸载这个版本,以便从5.1.0版本降级到5.0.1版本。

尝试时:

yarn global remove jhispter
Run Code Online (Sandbox Code Playgroud)

我收到一条错误消息:

yarn global v1.7.0
[1/2]   Removing module jhispter@5.1.0...
error This module isn't specified in a manifest.
info Visit https://yarnpkg.com/en/docs/cli/global for documentation about this command.
Run Code Online (Sandbox Code Playgroud)

卸载generator-jhipster的正确方法是什么?

jhipster yarnpkg

3
推荐指数
2
解决办法
6256
查看次数

从jfreechart饼图中删除灰色边框

我在从servlet发送的JSP页面中使用JFreeChart.

但是我无法删除图表周围的灰色边框(参见屏幕截图).

带边框的jfreechart http://www.craenhals.eu/images/jfreechart.png

我怎么能删除它?

我使用以下代码在我的servlet中生成图表:

    PiePlot plot = new PiePlot(dataset);
    StandardPieSectionLabelGenerator labels = new StandardPieSectionLabelGenerator("{0} = {2}");
    plot.setLabelGenerator(labels);
    plot.setInteriorGap(0);
    plot.setBackgroundPaint(Color.white);
    plot.setBaseSectionOutlinePaint(Color.blue);
    plot.setBaseSectionPaint(Color.green);
    plot.setShadowPaint(Color.black);
    plot.setShadowXOffset(0);
    plot.setShadowYOffset(0);
    plot.setOutlineVisible(false);


    chart = new JFreeChart("", plot);

    chart.setPadding(new RectangleInsets(0, 0, 0, 0));


    chart.setBorderVisible(false);
    chart.clearSubtitles();
Run Code Online (Sandbox Code Playgroud)

我在这里错过了什么?我也在我的JSP中使用此代码来嵌入图像:

<img
    src="<c:url value="/beheerder/statistieken?actie=chart_contactwijze"/>"
    title="Contactwijze" border="0"/>
Run Code Online (Sandbox Code Playgroud)

java jfreechart java-ee

2
推荐指数
2
解决办法
7323
查看次数