Files
2026-06-11 10:42:07 +02:00

536 B

RestCOBOL

RestCobol is a "Framework", that allows to make COBOL Procedures available via Rest. All Endpoints are defined in a single yaml file.

Running the Project

Start Server with just run, or build the image with just build

Cobol parsing

A CopyBook will be parsed into usable JSON, like this:

       01 STUDENT.
           05 ST_ID         PIC 9(5).
           05 FIRST_NAME    PIC X(20).
           05 LAST_NAME     PIC X(20).
{
  "stId": 34401,
  "firstName": "Lukas",
  "lastName": "King"
}