facebook

Change Calendar type on domain attributes for java.util.Date

  1. MyEclipse IDE
  2.  > 
  3. Spring Development
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #325624 Reply

    DevAlternatives
    Participant

    Hi,

    I need to change the Calendar type to java.util.Date for the spring mvc scaffolding

    
        @Temporal(TemporalType.DATE)
        @Column(name = "F_FECHA_INICIO", nullable = false)
        @Basic(fetch = FetchType.EAGER)
        @XmlElement
        Date ffechainicio;
    

    I notice that the domain objects are generated on the DataType.jet but the attribute types are already defined in the model .

    On a previous post we accomplish a similar task by an extension point in the plugin on the TableDataTypeInputProvider for changing the names in each of the attributes, can you help us to provide a similar aproach in order to use java.util.Date instead of Calendar for the date types.

    I’m using Oracle 11g and MyEclipse 10

    Thanks,

    http://www.myeclipseide.com/PNphpBB2-viewtopic-t-28824-highlight-camelcase-sid-e78f25cef0701c60d7f5661fd348616a.html

    
    public class CustomTableDataTypeInputProvider extends
            TableDataTypeInputProvider {
        protected List<DataType> generateDataTypes() throws InterruptedException {
            List<DataType> dataTypes = super.generateDataTypes();
    
            try {
                for (DataType dataType : dataTypes) {
                    for (org.skyway.core.model.data.Field field : dataType
                            .getFields()) {
                        field.setName(parser(field.getName()));
                    }
                }
    
                return dataTypes;
            } catch (Throwable t) {
                throw new RuntimeException(
                        "Unable to load data type from table(s): "
                                + getDataTypeInputs(), t);
            }
        }
    
    }
    
    #325763 Reply

    cconway
    Member

    I have escalated this question to a developer and will post a reply once I have more information.

    #325951 Reply

    DevAlternatives
    Participant

    Hi cindy,

    For this case, Is there any feedback from the developer ? Thanks in advance

    Thanks,

    #326488 Reply

    DevAlternatives
    Participant

    Hi,

    We didn’t receive any feedback from myeclipse in this case, can we have some updates on the topic.

    Thanks,

Viewing 4 posts - 1 through 4 (of 4 total)
Reply To: Change Calendar type on domain attributes for java.util.Date

You must be logged in to post in the forum log in