I'm running into an issue when my data sources load. It looks like SmartGWT is using the wrong Spring bean to try and find the hibernate SessionFactory.
Here are my 2 data sources:
In the log, both data sources are being loaded from the "aaosSessionFactory" even though the config bean in the second data source specifies a different bean. Here's the log output:
When the "AAOSDoorSubType" data source loads it's looking at the wrong session factory bean. The specific error is :
In my server.xml I've specified both beans. It seems that the server won't come up at all if at least one of these isn't in there:
Swapping the order of the hibernate.config.bean's in the server.xml changes which data source fails to load properly. Why is that data source loader not looking at the configBean defined in the data source file?
Here are my 2 data sources:
Code:
<DataSource ID="FireRating" serverType="hibernate" autoDeriveSchema="true" schemaBean="com.assaabloy.aaos.shared.entities.aaos.FireRating" configBean="aaosSessionFactory"> </DataSource>
Code:
<DataSource ID="AAOSDoorSubType" serverType="hibernate" autoDeriveSchema="true" schemaBean="com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubType" configBean="adsSessionFactory"> </DataSource>
Code:
Running CodeServer with parameters: [-noprecompile, -port, 9876, -sourceLevel, 1.8, -bindAddress, 127.0.0.1, -launcherDir, E:\workspace\AAOS_Server\build\web, -logLevel, INFO, -style, DETAILED, com.assaabloy.aaos.gwt.admin.admin] Super Dev Mode starting up workDir: C:\Users\ausder\AppData\Local\Temp\gwt-codeserver-3615738720949860423.tmp 12:59:00.223 [main] INFO org.eclipse.jetty.util.log - Logging initialized @2472ms Loading Java files in com.assaabloy.aaos.gwt.admin.admin. Module setup completed in 21082 ms 12:59:19.875 [main] INFO org.eclipse.jetty.server.Server - jetty-9.2.z-SNAPSHOT 12:59:19.893 [main] INFO org.eclipse.jetty.server.handler.ContextHandler - Started o.e.j.s.ServletContextHandler@116a0d9d{/,null,AVAILABLE} 12:59:19.907 [main] INFO org.eclipse.jetty.server.ServerConnector - Started ServerConnector@5ebfe3b3{HTTP/1.1}{127.0.0.1:9876} 12:59:19.907 [main] INFO org.eclipse.jetty.server.Server - Started @22164ms The code server is ready at http://127.0.0.1:9876/ Code server started in 21.62 s ms 12:59:19.997 [main] INFO org.eclipse.jetty.server.Server - jetty-9.2.z-SNAPSHOT 12:59:23.639 [main] INFO / - Warning: No org.apache.tomcat.JarScanner set in ServletContext. Falling back to default JarScanner implementation. 12:59:23.737 [main] INFO / - No Spring WebApplicationInitializer types detected on classpath ISC: Configuring log4j from: file:/E:/workspace/AAOS_Server/build/web/WEB-INF/classes/log4j.isc.config.xml === 2017-02-24 12:59:23,864 [main] INFO ISCInit - Isomorphic SmartClient/SmartGWT Framework - Initializing === 2017-02-24 12:59:23,872 [main] INFO ConfigLoader - Attempting to load framework.properties from CLASSPATH === 2017-02-24 12:59:23,918 [main] INFO ConfigLoader - Successfully loaded framework.properties from CLASSPATH at location: jar:file:/E:/workspace/AAOS_Server/build/web/WEB-INF/lib/isomorphic_core_rpc.jar!/framework.properties === 2017-02-24 12:59:23,919 [main] INFO ConfigLoader - Attempting to load project.properties from CLASSPATH === 2017-02-24 12:59:23,920 [main] INFO ConfigLoader - Unable to locate project.properties in CLASSPATH === 2017-02-24 12:59:23,923 [main] INFO ConfigLoader - Successfully loaded isc_interfaces.properties from CLASSPATH at location: jar:file:/E:/workspace/AAOS_Server/build/web/WEB-INF/lib/isomorphic_core_rpc.jar!/isc_interfaces.properties === 2017-02-24 12:59:23,924 [main] INFO ConfigLoader - Attempting to load server.properties from CLASSPATH === 2017-02-24 12:59:23,925 [main] INFO ConfigLoader - Successfully loaded server.properties from CLASSPATH at location: file:/E:/workspace/AAOS_Server/build/web/WEB-INF/classes/server.properties === 2017-02-24 12:59:23,931 [main] INFO Logger - Logging system started. === 2017-02-24 12:59:23,957 [main] INFO ISCInit - Auto-detected webRoot - using: E:\workspace\AAOS_Server\build\web === 2017-02-24 12:59:23,958 [main] INFO ISCInit - Isomorphic SmartClient/SmartGWT Framework (v11.0p_2017-02-17/Pro Deployment 2017-02-17) - Initialization Complete 12:59:30.809 [main] INFO org.eclipse.jetty.server.handler.ContextHandler - Started c.g.g.d.s.j.WebAppContextWithReload@3dda5a2d{/,file:/E:/workspace/AAOS_Server/build/web/,AVAILABLE}{E:\workspace\AAOS_Server\build\web} 12:59:30.812 [main] INFO org.eclipse.jetty.server.ServerConnector - Started ServerConnector@6fe4c2d6{HTTP/1.1}{127.0.0.1:8888} 12:59:30.813 [main] INFO org.eclipse.jetty.server.Server - Started @33070ms === 2017-02-24 12:59:34,803 [4-48] INFO RequestContext - URL: '/admin/sc/skins/Enterprise/load_skin.js', User-Agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36': Safari with Accept-Encoding header === 2017-02-24 12:59:34,803 [4-50] INFO RequestContext - URL: '/admin/sc/DataSourceLoader', User-Agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36': Safari with Accept-Encoding header === 2017-02-24 12:59:34,818 [4-48] INFO Download - done streaming: E:/workspace/AAOS_Server/build/web/admin/sc/skins/Enterprise/load_skin.js === 2017-02-24 12:59:34,894 [4-50] DEBUG XML - Parsed XML from E:\workspace\AAOS_Server\build\web\admin\sc\system\schema\builtinTypes.xml: 7ms === 2017-02-24 12:59:34,932 [4-50] INFO PoolManager - SmartClient pooling started for 'simpleTypes' objects === 2017-02-24 12:59:35,025 [4-50] DEBUG XML - Parsed XML from E:\workspace\AAOS_Server\build\web\ds\FireRating.ds.xml: 3ms === 2017-02-24 12:59:35,036 [4-50] DEBUG XML - Parsed XML from E:\workspace\AAOS_Server\build\web\admin\sc\system\schema\DataSource.ds.xml: 10ms === 2017-02-24 12:59:35,132 [4-50] DEBUG HibernateDataSource - Looking up session factory with lookup style 'spring' === 2017-02-24 12:59:35,133 [4-50] INFO ServerObject - DMI on Spring bean: &aaosSessionFactory === 2017-02-24 12:59:35,137 [4-50] DEBUG HibernateDSGenerator - Generating data source 'FireRating' for entity com.assaabloy.aaos.shared.entities.aaos.FireRating === 2017-02-24 12:59:35,140 [4-50] DEBUG HibernateDSGenerator - Generated data source configuration: {idClassName=com.assaabloy.aaos.shared.entities.aaos.FireRatingPK, beanClassName=com.assaabloy.aaos.shared.entities.aaos.FireRating, entityName=com.assaabloy.aaos.shared.entities.aaos.FireRating, serverType=hibernate, extIsEmbeddedId=true, allowAdvancedCriteria=true, ID=FireRating, dropExtraFields=true, generatedBy=v11.0p_2017-02-17/Pro Deployment 2017-02-17, fields=[{canEdit=true, name=fireRatingPK_locale, length=20, valueXPath=fireRatingPK/locale, type=text, required=true, primaryKey=true}, {canEdit=true, name=fireRatingPK_productName, length=100, valueXPath=fireRatingPK/productName, type=text, required=true, primaryKey=true}, {canEdit=true, name=alternatePicture, length=100, type=text, required=false}, {canEdit=true, name=briefDesc, length=500, type=text, required=false}, {canEdit=true, name=fullDesc, length=100, type=text, required=false}, {canEdit=true, name=hide, length=255, type=boolean, required=false}, {canEdit=true, name=image, length=255, type=any, required=false}, {canEdit=true, name=keyWords, length=2147483647, type=text, required=false}, {canEdit=true, name=sortOrder, length=255, type=integer, required=true}]} === 2017-02-24 12:59:35,140 [4-50] DEBUG HibernateDSGenerator - Generating data source 'FireRating' for entity com.assaabloy.aaos.shared.entities.aaos.FireRating === 2017-02-24 12:59:35,140 [4-50] DEBUG HibernateDSGenerator - Generated data source configuration: {idClassName=com.assaabloy.aaos.shared.entities.aaos.FireRatingPK, beanClassName=com.assaabloy.aaos.shared.entities.aaos.FireRating, entityName=com.assaabloy.aaos.shared.entities.aaos.FireRating, serverType=hibernate, extIsEmbeddedId=true, allowAdvancedCriteria=true, ID=FireRating, dropExtraFields=true, generatedBy=v11.0p_2017-02-17/Pro Deployment 2017-02-17, fields=[{extPrecision=19, extIsLazy=false, canEdit=true, name=fireRatingPK_locale, length=20, extIsUnique=false, valueXPath=fireRatingPK/locale, type=text, extScale=2, required=true, primaryKey=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=fireRatingPK_productName, length=100, extIsUnique=false, valueXPath=fireRatingPK/productName, type=text, extScale=2, required=true, primaryKey=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=alternatePicture, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=briefDesc, length=500, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=fullDesc, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=hide, length=255, extIsUnique=false, type=boolean, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=image, length=255, extIsUnique=false, type=any, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=keyWords, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=sortOrder, length=255, extIsUnique=false, type=integer, extScale=2, required=true}]} === 2017-02-24 12:59:35,141 [4-50] DEBUG HibernateDataSource - Obtaining local Hibernate config for DataSource 'FireRating' via Spring bean 'aaosSessionFactory'. === 2017-02-24 12:59:35,141 [4-50] DEBUG HibernateDSGenerator - Generating data source 'FireRating' for entity com.assaabloy.aaos.shared.entities.aaos.FireRating === 2017-02-24 12:59:35,141 [4-50] DEBUG HibernateDSGenerator - Generated data source configuration: {idClassName=com.assaabloy.aaos.shared.entities.aaos.FireRatingPK, beanClassName=com.assaabloy.aaos.shared.entities.aaos.FireRating, entityName=com.assaabloy.aaos.shared.entities.aaos.FireRating, serverType=hibernate, extIsEmbeddedId=true, allowAdvancedCriteria=true, ID=FireRating, dropExtraFields=true, generatedBy=v11.0p_2017-02-17/Pro Deployment 2017-02-17, fields=[{extPrecision=19, extIsLazy=false, canEdit=true, name=fireRatingPK_locale, length=20, extIsUnique=false, valueXPath=fireRatingPK/locale, type=text, extScale=2, required=true, primaryKey=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=fireRatingPK_productName, length=100, extIsUnique=false, valueXPath=fireRatingPK/productName, type=text, extScale=2, required=true, primaryKey=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=alternatePicture, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=briefDesc, length=500, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=fullDesc, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=hide, length=255, extIsUnique=false, type=boolean, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=image, length=255, extIsUnique=false, type=any, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=keyWords, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=sortOrder, length=255, extIsUnique=false, type=integer, extScale=2, required=true}]} === 2017-02-24 12:59:35,141 [4-50] DEBUG DataSourceLoader - For DataSource 'FireRating', got instanceId 5 === 2017-02-24 12:59:35,141 [4-50] INFO ServerObject - DMI on Spring bean: &aaosSessionFactory === 2017-02-24 12:59:35,154 [4-50] WARN JSTranslater - disableStringInBrowser = false === 2017-02-24 12:59:35,158 [4-50] DEBUG XML - Parsed XML from E:\workspace\AAOS_Server\build\web\ds\AAOSDoorSubType.ds.xml: 3ms === 2017-02-24 12:59:35,160 [4-50] WARN HibernateDataSource - Declared schemaBean 'com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubType' was not found among existing Hibernate mappings. Falling back to examining the POJO. === 2017-02-24 12:59:35,165 [4-50] WARN BasicDataSource - Can not load related data source '[B' for field 'image'. Treating as simple field. === 2017-02-24 12:59:35,166 [4-50] WARN BasicDataSource - Can not load related data source 'com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubTypePK' for field 'AAOSDoorSubTypePK'. Treating as simple field. === 2017-02-24 12:59:35,564 [4-52] INFO RequestContext - URL: '/admin/sc/skins/Enterprise/skin_styles.css', User-Agent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36': Safari with Accept-Encoding header === 2017-02-24 12:59:35,568 [4-52] INFO Download - done streaming: E:/workspace/AAOS_Server/build/web/admin/sc/skins/Enterprise/skin_styles.css === 2017-02-24 12:59:36,158 [4-50] DEBUG HibernateDSGenerator - Generating data source 'AAOSDoorSubType' for entity com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubType === 2017-02-24 12:59:36,158 [4-50] DEBUG HibernateDSGenerator - Generated data source configuration: {idClassName=com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubTypePK, beanClassName=com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubType, entityName=com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubType, serverType=hibernate, extIsEmbeddedId=true, allowAdvancedCriteria=true, ID=AAOSDoorSubType, dropExtraFields=true, generatedBy=v11.0p_2017-02-17/Pro Deployment 2017-02-17, fields=[{extPrecision=19, extIsLazy=false, canEdit=true, name=aAOSDoorSubTypePK_locale, length=20, extIsUnique=false, valueXPath=aAOSDoorSubTypePK/locale, type=text, extScale=2, required=true, primaryKey=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=aAOSDoorSubTypePK_productName, length=100, extIsUnique=false, valueXPath=aAOSDoorSubTypePK/productName, type=text, extScale=2, required=true, primaryKey=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=alternatePicture, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=briefDesc, length=400, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=ceco, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=curries, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=cutoutLocation, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=fullDesc, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=graham, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=hide, length=255, extIsUnique=false, type=boolean, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=image, length=255, extIsUnique=false, type=any, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=keyWords, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=link, length=400, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=maiman, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=manufacturer, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=profile, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=sortOrder, length=255, extIsUnique=false, type=integer, extScale=2, required=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=submittal, length=300, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=visTranslate, length=20, extIsUnique=false, type=text, extScale=2, required=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=visibleGlass, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=webPage, length=400, extIsUnique=false, type=text, extScale=2, required=false}]} === 2017-02-24 12:59:36,158 [4-50] WARN BasicDataSource - Can not load related data source '[B' for field 'image'. Treating as simple field. === 2017-02-24 12:59:36,159 [4-50] WARN BasicDataSource - Can not load related data source 'com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubTypePK' for field 'AAOSDoorSubTypePK'. Treating as simple field. === 2017-02-24 12:59:36,159 [4-50] DEBUG HibernateDataSource - Obtaining local Hibernate config for DataSource 'AAOSDoorSubType' via Spring bean 'adsSessionFactory'. === 2017-02-24 12:59:36,159 [4-50] INFO ServerObject - DMI on Spring bean: &adsSessionFactory === 2017-02-24 12:59:36,159 [4-50] DEBUG HibernateDSGenerator - Generating data source 'AAOSDoorSubType' for entity com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubType === 2017-02-24 12:59:36,159 [4-50] DEBUG HibernateDSGenerator - Generated data source configuration: {idClassName=com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubTypePK, beanClassName=com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubType, entityName=com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubType, serverType=hibernate, extIsEmbeddedId=true, allowAdvancedCriteria=true, ID=AAOSDoorSubType, dropExtraFields=true, generatedBy=v11.0p_2017-02-17/Pro Deployment 2017-02-17, fields=[{extPrecision=19, extIsLazy=false, canEdit=true, name=aAOSDoorSubTypePK_locale, length=20, extIsUnique=false, valueXPath=aAOSDoorSubTypePK/locale, type=text, extScale=2, required=true, primaryKey=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=aAOSDoorSubTypePK_productName, length=100, extIsUnique=false, valueXPath=aAOSDoorSubTypePK/productName, type=text, extScale=2, required=true, primaryKey=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=alternatePicture, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=briefDesc, length=400, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=ceco, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=curries, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=cutoutLocation, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=fullDesc, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=graham, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=hide, length=255, extIsUnique=false, type=boolean, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=image, length=255, extIsUnique=false, type=any, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=keyWords, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=link, length=400, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=maiman, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=manufacturer, length=100, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=profile, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=sortOrder, length=255, extIsUnique=false, type=integer, extScale=2, required=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=submittal, length=300, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=visTranslate, length=20, extIsUnique=false, type=text, extScale=2, required=true}, {extPrecision=19, extIsLazy=false, canEdit=true, name=visibleGlass, length=2147483647, extIsUnique=false, type=text, extScale=2, required=false}, {extPrecision=19, extIsLazy=false, canEdit=true, name=webPage, length=400, extIsUnique=false, type=text, extScale=2, required=false}]} === 2017-02-24 12:59:36,160 [4-50] DEBUG DataSourceLoader - For DataSource 'AAOSDoorSubType', got instanceId 8 === 2017-02-24 12:59:36,162 [4-50] INFO Compression - /admin/sc/DataSourceLoader: 2917 -> 783 bytes GET /recompile/admin Job com.assaabloy.aaos.gwt.admin.admin_1_0 starting job: com.assaabloy.aaos.gwt.admin.admin_1_0 binding: user.agent=safari Compiling module com.assaabloy.aaos.gwt.admin.admin Unification traversed 598 fields and methods and 179 types. 0 are considered part of the current module and 5 had all of their fields and methods traversed. Compiling 1 permutation Compiling permutation 0... Linking per-type JS with 0 new/changed types. Source Maps Enabled Compile of permutations succeeded Compilation succeeded -- 2.911s Linking into C:\Users\ausder\AppData\Local\Temp\gwt-codeserver-3615738720949860423.tmp\com.assaabloy.aaos.gwt.admin.admin\compile-2\war\admin; Writing extras to C:\Users\ausder\AppData\Local\Temp\gwt-codeserver-3615738720949860423.tmp\com.assaabloy.aaos.gwt.admin.admin\compile-2\extras\admin Link succeeded Linking succeeded -- 13.827s 24.862s total -- Compile completed
Code:
=== 2017-02-24 12:59:35,160 [4-50] WARN HibernateDataSource - Declared schemaBean 'com.assaabloy.aaos.shared.entities.ads.AAOSDoorSubType' was not found among existing Hibernate mappings. Falling back to examining the POJO.
Code:
hibernate.config.lookupStyle: spring hibernate.config.bean: adsSessionFactory hibernate.config.bean: aaosSessionFactory
Comment