Lucee 4.5.1.003 Error (org.hibernate.MappingException) Message Bad identifier type: double Cause org.hibernate.MappingException
Lucee 4.5.1.000 Error (org.hibernate.MappingException) | |
Message | Bad identifier type: double |
Cause | org.hibernate.MappingException |
Lucee 4.5.1.011 Error (org.hibernate.MappingException) | |
Message | Bad identifier type: double |
Cause | org.hibernate.MappingException |
--
You received this message because you are subscribed to the Google Groups "Lucee" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lucee+un...@googlegroups.com.
To post to this group, send email to lu...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/59fa70f0-5f38-49a7-9794-dac834c45359%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Lucee 4.5.1.000 Error (org.hibernate.MappingException) | |
Message | Bad identifier type: double |
Cause | org.hibernate.MappingException |
Java Stacktrace | Bad identifier type: double at org.hibernate.engine.UnsavedValueFactory.getUnsavedIdentifierValue(UnsavedValueFactory.java:95):95 at org.hibernate.tuple.PropertyFactory.buildIdentifierProperty(PropertyFactory.java:67):67 at org.hibernate.tuple.entity.EntityMetamodel.(EntityMetamodel.java:136):136 at org.hibernate.persister.entity.AbstractEntityPersister.(AbstractEntityPersister.java:475):475 at org.hibernate.persister.entity.SingleTableEntityPersister.(SingleTableEntityPersister.java:133):133 at org.hibernate.persister.PersisterFactory.createClassPersister(PersisterFactory.java:84):84 at org.hibernate.impl.SessionFactoryImpl.(SessionFactoryImpl.java:297):297 at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1385):1385 at lucee.runtime.orm.hibernate.SessionFactoryData.buildSessionFactory(Unknown Source):-1 at lucee.runtime.orm.hibernate.HibernateORMEngine.getSessionFactoryData(Unknown Source):-1 at lucee.runtime.orm.hibernate.HibernateORMEngine.init(Unknown Source):-1 at lucee.runtime.config.ConfigImpl.getORMEngine(Unknown Source):-1 at lucee.runtime.config.ConfigImpl.resetORMEngine(Unknown Source):-1 at lucee.runtime.orm.ORMUtil.resetEngine(Unknown Source):-1 at lucee.runtime.listener.ModernAppListener.initApplicationContext(Unknown Source):-1 at lucee.runtime.listener.ModernAppListener._onRequest(Unknown Source):-1 at lucee.runtime.listener.MixedAppListener.onRequest(Unknown Source):-1 at lucee.runtime.PageContextImpl.execute(Unknown Source):-1 at lucee.runtime.PageContextImpl.execute(Unknown Source):-1 at lucee.runtime.engine.CFMLEngineImpl.serviceCFML(Unknown Source):-1 at lucee.loader.servlet.CFMLServlet.service(Unknown Source):-1 at javax.servlet.http.HttpServlet.service(HttpServlet.java:727):727 at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303):303 at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208):208 at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52):52 at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241):241 at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208):208 at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220):220 at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122):122 at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:504):504 at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170):170 at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103):103 at mod_cfml.core.invoke(core.java:132):132 at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:950):950 at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116):116 at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:421):421 at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1074):1074 at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:611):611 at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:314):314 at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142):1142 at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617):617 at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61):61 at java.lang.Thread.run(Thread.java:745):745 |
Timestamp | 4/23/15 8:26:08 AM UTC |
To view this discussion on the web visit https://groups.google.com/d/msgid/lucee/8093c430-ea68-4d32-8674-b198ae4fd167%40googlegroups.com.
- type - this is the standard type attribute that was available to the cfproperty tag pre-CF9. You are only supposed to use valid CF types for this.
- ormtype - this is used to tell Hibernate what the data type of the property should be. It is a database agnostic value. Hibernate will translate it into a valid datatype for the dbms in question.
- sqltype - this is a dbms-specific datatype. You would use this when you want to direct Hibernate to create a column with a specific datatype.
- none - if you are pointing your persistent object at an existing table, you can choose not to specify any of the above three attributes, and Hibernate will look at the database to determine the datatype.