⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 js17.html

📁 帮助不懂java得人员学习有关的知识
💻 HTML
📖 第 1 页 / 共 4 页
字号:
<html>
  <!-- js-17 滚屏 -->
  <head>
    <style>
	  div.timmer{width:300;text-align:center;margin:auto}
	</style>
    <script src="toolsKit.js"></script>
    <script>
	   var tid = null;
	   function myScreenScroll(){
	     window.scrollBy(0,1);
	   }
	   function startOrStop(){
	      if(tid==null){
		     tid = window.setInterval(
			           "myScreenScroll()",40);
		  }else{
		     window.clearInterval(tid);
			 tid = null;
		  }
	   }

	</script>
  </head>
  <body>
      <div class="timmer"  
	     style="background-color:#C6C6C6;width:100" 
		 onClick="startOrStop();">开始/结束</div>
      <pre>
	  Hibernate Changelog
===================
Note: Newer entries are automatically generated and the description might not
match the actual issue resolution (i.e. a bug might not be a bug). Please
refer to the particular case on JIRA using the issue tracking number to learn
more about each case.


Changes in version 3.2.4 (2007.05.18)
-------------------------------------------

** Bug
    * [HHH-2605] - Since 3.2.4 no value specified for row id
    * [HHH-2613] - LockMode.FORCE on non versioned entity leads to NPE


Changes in version 3.2.4 (2007.05.09)
-------------------------------------------

** Bug
    * [HHH-511] - reattach object from same session
    * [HHH-2316] - org.hibernate.cache.CacheKey.equals() can cause PropertyAccessException to be thrown
    * [HHH-2553] - New LoadContexts Implementation causing possible performance degradation
    * [HHH-2602] - instrumented many-to-one problem with aggressive release

** Deprecation
    * [HHH-2603] - Deprecate the Session.connection() method

** Improvement
    * [HHH-2549] - Warn users explicitly about schemaexport and schemaupdate does not support annotations

** New Feature
    * [HHH-1] - Optimize Hibernate for the bulk insertion of related entities

** Patch
    * [HHH-2301] - Identity generator with custom insert SQL broken in 3.2 (Scott Rankin and Gail Badner)
    * [HHH-2336] - paremeterizable and typedef-able UserCollectionType (Holger Brands)
    * [HHH-2580] - Performace: Too many lookups of WAS extended transaction support (Jesper Udby)


Changes in version 3.2.3 (2007.04.02)
-------------------------------------------

** Bug
    * [HHH-2376] - Query with fully qualified entity class fails
    * [HHH-2392] - LockModes referencing non-root joined-subclass class in HQL/Criteria
    * [HHH-2393] - Generated properties leave open ResultSet on Batcher to be closed on transaction completion
    * [HHH-2397] - hilo generator can generate negative numbers because of arithmetic overflow
    * [HHH-2469] - ArrayIndexOutOfBoundsException during update by rowid
    * [HHH-2476] - PersistentMap.put() incorrect on uninitialized, non-extra-lazy map
    * [HHH-2481] - Big memory leak in the use of CGLIB
    * [HHH-2499] - incorrect assertion failure relating to generated property values
    * [HHH-2513] - Abusive WARN logged during deserialization of replicated SessionFactory
    * [HHH-2521] - Fix cascading of merge across component properties
    * [HHH-2532] - update/delete executeUpdate() causes problems with JBossCache (at least in opt-locking setups)

** Improvement
    * [HHH-2495] - encapsulate the notion of state pertaining to processing a result set
    * [HHH-2534] - better error message for illegal 'collection dereference' in HQL query
    * [HHH-2535] - Change Cache' Cache71Dialect so that sequence support returns false

** New Feature
    * [HHH-2471] - create a set of "enhanced" generators
    * [HHH-2500] - apply Terradata certification results

** Patch
    * [HHH-2367] - InformixDialect uses wrong data type
    * [HHH-2489] - SQL comments for HQL bulk operations


Changes in version 3.2.2 (2007.01.24)
-------------------------------------------

** Bug
    * [HHH-1471] - If the 'generated' attribute is set to 'insert' or 'always' on the property of a component it is ignored and the value is not read from the database.
    * [HHH-1646] - Bad code in FastClass.equals
    * [HHH-1889] - LockMode.UPGRADE not applied in all cases for SQL Server / Sybase
    * [HHH-2112] - ClassCastException in StatefulPersistenceContext.getCachedDatabaseSnapshot(...)
    * [HHH-2221] - MySQL temp table DDL and isolation
    * [HHH-2238] - SQLQuery executeUpdate doesn't respect Query.setFlushMode()
    * [HHH-2251] - Settings build unnecessary in schemaupdate/schemavalidate
    * [HHH-2257] - Query.iterate() results differ from Query.list() 2
    * [HHH-2259] - autoflush and autoclose not longer occur in JTA environment with hibernate 3.2
    * [HHH-2264] - NPE when NamedQuery contains space before variable name
    * [HHH-2274] - Collection ordering when many to many order by is used is not respected
    * [HHH-2275] - Mapping a composite element as a map key using formulas can lead to AOOBE
    * [HHH-2284] - HQL: selecting components inside components doesn't work
    * [HHH-2291] - collection based on property-ref not handled correctly during reattch
    * [HHH-2292] - merge detached instance fails to persist collection changes in case of bare collection reference
    * [HHH-2356] - NullableType.toString(Object) should account for nulls
    * [HHH-2366] - Changing a component's value does not trigger an update during flush
    * [HHH-2378] - replicate() of non-versioned entiy can result in wrong value for version in entity cache

** Improvement
    * [HHH-1851] - relax special handling of 'id' property
    * [HHH-2130] - SQLQuery does not autoflush all entities used in the query
    * [HHH-2193] - Introduce a flag to avoid checking NamedQuery at startup
    * [HHH-2242] - Consider Allowing Optimistic Lock Strategies other than 'Version' with joined-subclass
    * [HHH-2250] - Create an appropriate error message if Query.setEntity is passed a NULL value
    * [HHH-2282] - PersistentClass property lookups do not properly account for embedded composite identifiers
    * [HHH-2286] - dialect informational metadata
    * [HHH-2372] - Allow tooling to create Settings via SettingsFactory without contacting the db

** New Feature
    * [HHH-2246] - No way to specify CACHE_PROVIDER_CONFIG in HibernateServiceMBean

** Patch
    * [HHH-2300] - Updated dialect for H2 database engine
    * [HHH-2371] - enhancements to C3P0ConnectionProvider

** Task
    * [HHH-2032] - update c3p0 to 0.9.1



Changes in version 3.2.1 (2006.11.16)
-------------------------------------------

** Bug
    * [HHH-939] - 'class' property in HQL results in incorrect SQL for joined-subclass
    * [HHH-1401] - session.merge() executes unnecessary updates when one-to-many relationship is defined.
    * [HHH-1460] - Inconsistent behavior when using Session.get() with multiple subclasses
    * [HHH-1564] - deleting versioned object with collection leads to unecessary update
    * [HHH-1629] - SchemaUpdate/validator doesn't listen to quoting
    * [HHH-1631] - Missing table in SQL from clause that is referenced in where clause when using joined subclass
    * [HHH-1651] - hibernate does not find an existing sequence from an Oracle database
    * [HHH-1663] - <any/> with collection will produce "AssertionFailure: collection was not processed by flush()"
    * [HHH-1737] - Add a ConnectionWrapper interface to allow access to the underlying connection from a BorrowedConnectionProxy
    * [HHH-1756] - Proxy objects are not removed from the BatchFetchQueue during a session evict
    * [HHH-1774] - Component parameters bound incorrectly
    * [HHH-1921] - "dirty, but no dirty properties" thrown when Interceptor resets properties.
    * [HHH-1986] - javassist throws InvocationTargetException instead of original checked Exception
    * [HHH-2027] - merge listener over-writes Interceptor changes to component state for a transient entity
    * [HHH-2044] - DefaultMergeEventListener.entityIsDetached call StaleObjectStateException with wrong identifier
    * [HHH-2082] - UpdateTimestampsCache.isUpToDate returns before checking all spaces
    * [HHH-2108] - cacheable files broken
    * [HHH-2138] - merge with bidirectional one-to-one may fail
    * [HHH-2145] - set.retainAll calling set.addAll
    * [HHH-2174] - Wrong log message in SessionImpl.afterTransactionCompletion(...)
    * [HHH-2199] - Unique constraints on nullable columns should not be generated with unique-key is used and supportsNotNullUnique=false
    * [HHH-2202] - Clearing the connection warnings even when log is > WARN to workaround a Sybase issue
    * [HHH-2206] - SessionImpl tries to deserialize itself in an incorrect order
    * [HHH-2207] - Suggested fix for HQL - MySQL setMaxResults issue
    * [HHH-2226] - org.hibernate.hql.ast.tree.FromElementType contains warning log message that should be debug instead
    * [HHH-2229] - Performance issue with fix for HHH-1293, CGLIBLazyInitializer may be slower for certain Java classes
    * [HHH-2236] - Lazy property + setReadOnly + Instrumented classes results in NullPointerException when accessing lazy property

** Improvement
    * [HHH-2037] - provide Query.setProperties(Map)
    * [HHH-2042] - Typo in FlushMode.MANUAL Javadoc
    * [HHH-2057] - Add "remove" cascading style to CascadeStyle for XML mappings
    * [HHH-2127] - Document <filter-def condition="defaultCondition"> and <filter-def>defaultCondition
    * [HHH-2135] - Hibernate Deserialization:  In org.hibernate.type.SerializableType the code makes a test for the return of a null object by simply testing the object as to whether or not it is null.
    * [HHH-2185] - introduce setting to control cglib caching of classes
    * [HHH-2203] - Make Post*Events extend AbstractEvent
    * [HHH-2208] - Table schema use in DatabaseMetadata
    * [HHH-2209] - ehcache.jar is old and does not contain the SingletonCacheProvider which are advised in exception messages
    * [HHH-2217] - Collection write methods and dirtying the collection

** New Feature
    * [HHH-2205] - Dialect for Intersystems' Cache SQL 2007.1

** Patch
    * [HHH-1767] - read-only cache for immutable collection causes unnecessary warning

** Task
    * [HHH-2219] - Upgrade to Javassist 3.4


Changes in version 3.2.0.ga (16.10.2006)
-----------------------------------------
(retag of 3.2.0.ga (2006.10.16))

Changes in version 3.2.0.cr5 (04.10.2006) 
-------------------------------------------

** Bug
    * [HHH-1668] - PersistentSet write methods mark collection as dirty even if entry is not written
    * [HHH-1714] - Session.get() behavior
    * [HHH-1891] - Since rc3 deprecation Warning: The syntax 'TYPE=storage_engine' is deprecated and will be removed in MySQL 5.2.

** Improvement
    * [HHH-2093] - PERSIST_ON_FLUSH ineffective for recursive object graphs

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -