Jasper Report无法使用Java和Mysql加载

时间:2019-07-19 08:01:02

标签: java jasper-reports

碧玉报告不起作用。当我单击按钮时,它显示一个错误。 我下载了所有rar文件。错误消息是:

  

java.lang.NoClassDefFoundError:   org / codehaus / groovy / control / CompilationFailedException

我在下面显示了屏幕截图图像: jar库

enter image description here

按钮点击表单

enter image description here

到目前为止我尝试过的

代码

<div>
    <form [formGroup]="selectForm">
        <div class="form-group">
            <label>User Name</label>
        <input type="text" formControlName="userName" class="form-control"  />
       <small class="form-text text-danger">{{selectForm.controls.userName.errorMessage}}<br/></small>  
      </div>
      <div class="form-group">
        <label>Password</label>
        <input type="text" formControlName="password" class="form-control"  />

      <small class="form-text text-danger">{{selectForm.controls.password.errorMessage}}<br/></small>
      </div>


        <div class="form-group" [formGroup]="selectForm.controls.address">
            <label>City</label>
            <input type="text" formControlName="city" class="form-control" />
            <small class="form-text text-danger">{{selectForm.controls.address.controls.city.errorMessage}}<br/></small>
        </div>

      <button (click)="OnSubmit()" class="btn btn-primary">Submit</button>
    </form>
  </div>

report2.jrxml

enter image description here

0 个答案:

没有答案