blob: f2bcffbc625eb3933300883741135de67873a75b [file] [log] [blame]
Title: Upgrade
<H3><A name="Upgrade-GeneralUpgradeRecommendations"></A>General Upgrade Recommendations</H3>
<UL>
<LI>Consult <TT>UPGRADE.txt</TT> and <TT>RELEASE-NOTES.txt</TT> files in the release you just downloaded for the most up to date instructions.</LI>
</UL>
<UL>
<LI><EM>(Optional)</EM> Delete CayenneModeler preferences. This is not strictly required, but recommended (especially if you used intermediate milestones and Betas). To do that delete &quot;$HOME/.cayenne/modeler.preferences&quot; file and &quot;$HOME/.cayenne/prefs&quot; directory, where <TT>$HOME</TT> is a user home directory which is OS and machine specific.</LI>
</UL>
<UL>
<LI>Upgrade Cayenne Mapping Projects. Open your project with the version of the Modeler that came with the latest download. If an upgrade dialog pops up, select &quot;yes&quot; to do an upgrade. Also it is also a good idea to make some insignificant change to the model (so that a &quot;Save&quot; button is activated) and do a save.</LI>
</UL>
<DIV class="panelMacro"><TABLE class="warningMacro"><COLGROUP><COL width="24"><COL></COLGROUP><TR><TD valign="top"><IMG src="http://cayenne.apache.org/docs/1.2/images/icons/emoticons/forbidden.gif" width="16" height="16" align="absmiddle" alt="" border="0"></TD><TD>Upgrading project XML files can make them unusable with earlier versions of Cayenne.</TD></TR></TABLE></DIV>
<UL>
<LI>Pay attention to CayenneModeler validation warnings.</LI>
</UL>
<UL>
<LI>Do a clean recomplie. Recompile all your code, to make sure that you are not using any old classes or methods. Pay attention to deprecation warnings. It is always a good idea to update your code to avoid deprecated API.</LI>
</UL>
<H3><A name="Upgrade-Upgradingto2.0"></A>Upgrading to 2.0</H3>
<P>2.0 is a mirror of 1.2 (third digit in release number is a patch level that matches 1.2 version, e.g. &quot;2.0.1&quot; has the same patch level as &quot;1.2.1&quot;). The main change is that all packages were renamed from &quot;org.objectstyle.&#42;&quot; to &quot;org.apache.&#42;&quot;. This affects user API and also mapping XML files (as they sometimes reference Cayenne classes by name).</P>
<UL>
<LI>First you need to upgrade the mapping files as described in general upgrade instructions above.</LI>
</UL>
<UL>
<LI>Upgrading the code: Replace &quot;org.objectstyle.&quot; with &quot;org.apache.&quot; everywhere in imports and do a clean recompile.</LI>
</UL>
<UL>
<LI>Upgrading logging configuration: If you are using custom logging configuration file, make sure that all the Cayenne loggers are changed from &quot;org.objectstyle&quot; to &quot;org.apache&quot;.</LI>
</UL>
<H3><A name="Upgrade-Upgradingto1.2"></A>Upgrading to 1.2</H3>
<P>This is the list of things that are different in 1.2 and may require attention when doing an upgrade:</P>
<UL>
<LI>Cayenne tools and runtime now REQUIRE at least JDK 1.4 (or higher). They won't work on JDK 1.3. If you are still on 1.3, upgrade your JDK if you can. If you can not, consider staying on Cayenne 1.1.</LI>
</UL>
<UL>
<LI>1.2 no longer needs Jakarta BeanUtils.</LI>
</UL>
<UL>
<LI>1.2 no longer relies on ClassLoader provided by Configuration (this API is deprecated as a matter of fact). Current code uses Thread.currentThread().getContextClassLoader().</LI>
</UL>
<UL>
<LI>In 1.2 PostgreSQLAdapter uses DB sequences for primary key generation instead of AUTO_PK_TABLE. To port an existing application, you will need to create those sequences (e.g. using the Modeler) and assign correct current values to them (e.g. taken from the old AUTO_PK_TABLE). After that AUTO_PK_TABLE can be dropped.</LI>
</UL>
<UL>
<LI>In 1.2 PostgreSQLAdapter's default &quot;BLOB&quot; mapping is changed from &quot;bytea&quot; to &quot;oid&quot;. It is still possible to use bytea, but watch for the Modeler-generated schema scripts - they will contain &quot;oid&quot;. The easiest way to migrate your mapping (if you don't want to change the DB) is to remap all bytea columns as LONGVARBINARY DbAttributes instead of BLOB.</LI>
</UL>
<UL>
<LI>For extra portability encoding of entity type in the ObjectId is now based on ObjEntity name, not Java class as before. If you had ObjEntities with matching names but different class names in different DataMaps, you will need to ensure entity name uniqueness.</LI>
</UL>
<UL>
<LI>ObjectId methods &quot;getObjClass&quot; and &quot;getObjectClass&quot; are removed (it wasn't possible to deprecate them and still preserve meaningful functionality). Constructors that take Class as the first argument are deprecated and will only work if entity naming follows CayenneModeler default conventions of using unqualified class name as the entity name.</LI>
</UL>
<UL>
<LI>TempObjectId is deprecated and is no longer used by Cayenne internally. If you were referencing TempObjectId explicitly in your code (e.g. if(id instanceof TempObjectId) ... ), you will need to modify the code and use &quot;isTemporary()&quot; superclass method.</LI>
</UL>
<UL>
<LI>The meaning of SnapshotEvent &quot;source&quot; and &quot;postedBy&quot; attributes is reversed per CAY-395 for better efficiency. If you implemented custom listeners of SnapshotEvents, you may need to doublecheck their logic. From now on events use DataRowStore as source, and EventBridge or ObjectStore as postedBy, depending on whether this was a local or a remote event. I.e. the new structure is the opposite to what we used in 1.1.</LI>
</UL>
<UL>
<LI>Cayenne stack events are no longer sent via a shared &quot;default&quot; EventManager. If you were using EventManager.getDefaultManager() to communicate or receive Cayenne stack events, you'll have to switch to Configuration.getEventManager(). Otherwise default manager can be accessed as before.</LI>
</UL>
<UL>
<LI>Query.setLoggingLevel/getLoggingLevel methods are removed from the interface and AbstractQuery implementor. As multi-tier Cayenne doesn't use Log4J, it was no longer possible to keep these methods deprecated.</LI>
</UL>
<UL>
<LI>Thread-bound Transactions: QueryEngine.performQueries(Collection,OperationObserver resultConsumer,Transaction) is deprecated and no longer used internally to further decouple layers in the access stack. This DOES NOT AFFECT most users. Only if you (a) implemented custom transactions and (b) manually manage their commit/rollback, you will also have to bind and unbind such Transactions to the current thread manually, for Cayenne stack classes to pick them up.</LI>
</UL>
<UL>
<LI>To force refresh of cached query results, one of the two new cache policies should be used instead of &quot;setRefreshingObjects(..)&quot; (&quot;setRefreshingObjects&quot; should only be used for its original purpose - refreshing individual objects, not list contents). See <A href="caching-query-results.html" title="Caching Query Results">Caching Query Results</A> for details.</LI>
</UL>
<UL>
<LI>ObjectStore no longer stores database snapshots of object. As a result a method &quot;retainSnapshot(DataObject object)&quot; is removed, as its meaningful deprecation is not possible.</LI>
</UL>