简体   繁体   中英

Unable to add Java imports in KIE workbench (jBPM)

I am brand new to jBPM. I am using the jBPM KIE workbench. As you can see in the 2nd picture, I added in the necessary imports in the KIE external data objects section. Why am I getting the errors? Do I need to do something else with the imports?

I am getting a thrown error of:

[KBase: defaultKieBase]: Process Compilation error URL cannot be resolved to a type
URL cannot be resolved to a type
HttpURLConnection cannot be resolved to a type
HttpURLConnection cannot be resolved to a type
BufferedReader cannot be resolved to a type
BufferedReader cannot be resolved to a type
InputStreamReader cannot be resolved to a type

Java Code:

    try {
        URL url = new URL("http://localhost:8080/users");
        HttpURLConnection con = (HttpURLConnection) url.openConnection();
        con.setRequestMethod("GET");
        con.setRequestProperty("Content-Type", "application/json");

        BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
        String inputLine;
        StringBuffer content = new StringBuffer();

        while ((inputLine = in.readLine()) != null) {
            content.append(inputLine);
        }

        in.close();

        System.out.println(content);
    }

    catch(Exception e){
        throw new RuntimeException(e);
    }

凯工作台

外部数据模型

The built in REST workitem should be a good starting point.

Create a project and add a BusinessProcess:

新业务流程

Then Add the built in Rest Workitem

添加内置的Rest Workitem

Then Open the Rest Workitem Properties and select the data assignments

选择剩余工作项数据分配

And enter values for the Rest Call

并输入“休息电话”的值

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM