- This topic has 3 replies, 2 voices, and was last updated 12 years, 8 months ago by
DevAlternatives.
-
AuthorPosts
-
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,
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); } } }
cconwayMemberI have escalated this question to a developer and will post a reply once I have more information.
Hi cindy,
For this case, Is there any feedback from the developer ? Thanks in advance
Thanks,
Hi,
We didn’t receive any feedback from myeclipse in this case, can we have some updates on the topic.
Thanks,
-
AuthorPosts