Code Monkey home page Code Monkey logo

Comments (6)

joelittlejohn avatar joelittlejohn commented on August 25, 2024

From [email protected] on April 20, 2011 10:45:43
Discussion on this:
http://groups.google.com/group/jsonschema2pojo-users/browse_thread/thread/4ae73b8ee6c64060

from jsonschema2pojo.

joelittlejohn avatar joelittlejohn commented on August 25, 2024

From [email protected] on December 01, 2012 05:34:12
As a quick and dirty fix for this [I am assuming my schema locations a filenames and the filename is alphabets plus underscore (_) only and is followed by .json; but one can do some thing more sophisticated in the same vein):
--- a/jsonschema2pojo-core/src/main/java/com/googlecode/jsonschema2pojo/rules/JsonSchemaRule.java
+++ b/jsonschema2pojo-core/src/main/java/com/googlecode/jsonschema2pojo/rules/JsonSchemaRule.java
@@ -57,13 +57,17 @@ public class JsonSchemaRule implements SchemaRule<JClassContainer, JType> {

     if (schemaNode.has("$ref")) {
         schema = ruleFactory.getSchemaStore().create(schema, schemaNode.get("$ref").asText());

+String[] parts = schemaNode.get("$ref").asText().split("[^A-Za-z_]");
+String guessedName = parts[parts.length - 2];
schemaNode = schema.getContent();

         if (schema.isGenerated()) {
             return schema.getJavaType();
         }
  •        return apply(nodeName, schemaNode, generatableType, schema);
    
  •        return apply(guessedName, schemaNode, generatableType, schema);
     } 
    

from jsonschema2pojo.

joelittlejohn avatar joelittlejohn commented on August 25, 2024

From [email protected] on December 01, 2012 05:35:32
On a related note - worth raising a separate issue I would think; I don't want a $extends $ref to generate a class named XXXParent either, for that my other quick and dirty fix:
diff --git a/jsonschema2pojo-core/src/main/java/com/googlecode/jsonschema2pojo/rules/ObjectRule.java b/jsonschema2pojo-core/src/main/java/com/googlecode/jsonschema2pojo/rules/ObjectRule.java
index 3373a69..790f1b3 100644
--- a/jsonschema2pojo-core/src/main/java/com/googlecode/jsonschema2pojo/rules/ObjectRule.java
+++ b/jsonschema2pojo-core/src/main/java/com/googlecode/jsonschema2pojo/rules/ObjectRule.java
@@ -183,7 +183,10 @@ public class ObjectRule implements SchemaRule<JPackage, JType> {
private JType getSuperType(String nodeName, JsonNode node, JClassContainer jClassContainer, Schema schema) {
JType superType = jClassContainer.owner().ref(Object.class);
if (node.has("extends")) {

  •        superType = ruleFactory.getSchemaRule().apply(nodeName + "Parent", node.get("extends"), jClassContainer, schema);
    
  •        String[] parts = node.get("extends").get("$ref").asText().split("[^A-Za-z_]");
    
  •        String guessedName = parts[parts.length - 2];
    
  •        superType = ruleFactory.getSchemaRule().apply(guessedName, node.get("extends"), jClassContainer, schema);
     }
     return superType;
    
    }

from jsonschema2pojo.

joelittlejohn avatar joelittlejohn commented on August 25, 2024

From [email protected] on December 01, 2012 06:12:09
One could come up with a more sophisticated URI to java class name conversion mechanism:

  1. first don't assume a flat packaging but mimic the relative URI structures of the schemas
    2)SomeFile ==> SomeFile
    SomeFile.json => SomeFile_json
    SomeFile.X.json => SomeFile_X_json
    Some_File.json => Some__File_json <= basically _ is escaped
    3)Of course a simpler means would be to use a property (e.g. javaType) in the schema file (if it exists) as the POJO name. (while this is documented in the extentions - it doesn't work as expected

from jsonschema2pojo.

joelittlejohn avatar joelittlejohn commented on August 25, 2024

From [email protected] on December 01, 2012 18:33:44
@tseringshrestha I would think that the javaType property could allow you to workaround your problems. What problem did you have with it?

from jsonschema2pojo.

joelittlejohn avatar joelittlejohn commented on August 25, 2024

Resolving this as a dupe of #164 as there's a better, cleaner, description of the problem there.

from jsonschema2pojo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.