Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
174 views
in Technique[技术] by (71.8m points)

RAML 1.0 representation of Java Map

I have RAML schema which contains "javaType": "java.util.Map<String, java.util.List<Employee>>"

I have separate schema (employee.schema) available which represent class Employee.

But as I have not used employee.schema in RAML so it is not generating class Employee and throws an Error while converting RAML to Java.

{
  "$schema": "http://json-schema.org/schema#",
  "type": "object",
  "description": "Desc",
  "properties": {
    "employeeGroups": {
      "type": "object",
      "javaType": "java.util.Map<String, java.util.List<Employee>>"
    }
  },
  "additionalProperties": false
}

Can anybody share comments how to represent "javaType": "java.util.Map<String, java.util.List<Employee>>" in RAML ?

RAML Version: 1.0
question from:https://stackoverflow.com/questions/50384943/raml-1-0-representation-of-java-map

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...