sha
stringlengths
1
40
author
stringlengths
1
63
committer
stringlengths
1
41
message
stringlengths
1
65.5k
subject
stringlengths
1
5.64k
subject_length
float64
1
5.64k
is_chore
bool
2 classes
is_bot
bool
2 classes
subject_word_count
float64
1
806
verb_object_spacy
bool
2 classes
verb_object_stanza
bool
2 classes
fits_requirements
bool
2 classes
owner
stringlengths
2
15
repo
stringlengths
2
21
__index_level_0__
int64
0
85.4k
7187a2435e66d11298048eba63a15cc5ddf5a505
Arjen Poutsma
Arjen Poutsma
XStreamMarshaller supports stream directly XStreamMarshaller now supports writing to OutputStreams and reading from InputStreams directly, as opposed to wrapping streams in a OutputStreamWriter or InputStreamReader. Issue: SPR-9663
xstreammarshaller supports stream directly
42
false
false
4
false
false
false
spring-projects
spring-framework
20,157
4e0977ccddb23ecf94e69f380d6d10c5719605d7
Chris Beams
Chris Beams
Expand repackaged asm/cglib jars into spring-core Prior to this change, the repackaged spring-asm and spring-cglib jars were being included wholesale in the spring-core jar, whereas the intention was to include the unzipped classfiles. This change ensures that spring-asm and spring-cglib jars are unzipped on the fly ...
expand repackaged asm/cglib jars into spring-core
49
false
false
6
false
false
false
spring-projects
spring-framework
20,158
df961a938e1f0811ac1cbd679f35de9e4d0eb8c6
Sam Brannen
Sam Brannen
RTU.setField() shouldn't call toString() on target ReflectionTestUtils.setField() implicitly calls toString() on the target object when arguments for a call to Assert.notNull() are built. This can have undesirable side effects, for example if the toString() invocation results in a thrown exception or access to an exte...
rtu.setfield() shouldn't call tostring() on target
50
false
false
6
false
false
false
spring-projects
spring-framework
20,159
e7e74c83d84dcd552d0e75458c91bc920e64d4d4
Rossen Stoyanchev
Rossen Stoyanchev
Merge pull request #50 from sslavic/SPR-8732
merge pull request #50 from sslavic/spr-8732
44
true
false
6
false
false
false
spring-projects
spring-framework
20,160
a9f42061510e5015965a6a680d866db519b5356d
Stevo Slavic
Stevo Slavic
Generate bracketless tag id in FreeMarker forms Before this change if FreeMarker Spring form macro was bound to a path which contains square brackets, those brackets would also appear in id of generated tag, making the id invalid. As of this fix all FreeMarker Spring form macros generate tag with id that does not con...
generate bracketless tag id in freemarker forms
47
false
false
7
false
true
false
spring-projects
spring-framework
20,161
9c8332a6c4e9fef73d7bf0e01480f75b0b83af6f
Rossen Stoyanchev
Rossen Stoyanchev
Merge pull request #48 from sslavic/SPR-5984
merge pull request #48 from sslavic/spr-5984
44
true
false
6
false
false
false
spring-projects
spring-framework
20,162
104f13e43ff2588e438e00f7ecf758b1846b1a4f
Stevo Slavic
Stevo Slavic
Fix MultipartResolver javadoc implementation refs Before this fix MultipartResolver javadoc mentioned that there is only one concrete implementation included in Spring. This was true as of Spring 2.5 but Spring 3.1 added another one, Servlet 3.0 Part API based implementation. This fix changes MultipartResolver javado...
fix multipartresolver javadoc implementation refs
49
false
false
5
false
false
false
spring-projects
spring-framework
20,163
6295f2b591a1293d94078e1d20f016cd82745fe1
Chris Beams
Chris Beams
Merge pull request #44 from mjkrumlauf/patch-1 * patch-1: Fix typo in Eclipse import instructions
merge pull request #44 from mjkrumlauf/patch-1
46
true
false
6
false
false
false
spring-projects
spring-framework
20,164
35bf5dc592a3f3c7909ca19b12f7e7d78e3b8246
Mike Krumlauf
Chris Beams
Fix typo in Eclipse import instructions
fix typo in eclipse import instructions
39
false
false
6
true
true
true
spring-projects
spring-framework
20,165
7b703b7e9b6d31d2d09cb977e59c83f65bd70b6f
Chris Beams
Chris Beams
Merge pull request #45 from sslavic/SPR-7940 * SPR-7940: Remove note on singleton-scoped proxy raising BCE
merge pull request #45 from sslavic/spr-7940
44
true
false
6
false
false
false
spring-projects
spring-framework
20,166
924c869b8adeaf8fe3da047d0bbf0137ffa9ddce
Stevo Slavic
Chris Beams
Remove note on singleton-scoped proxy raising BCE Before this change bean scopes chapter in Spring reference documentation had a note which mentioned that creating a scoped proxy for singleton- or prototype-scoped beans will throw BeanCreationException. This is no longer the case and this change removes the mentioned...
remove note on singleton-scoped proxy raising bce
49
false
false
7
true
true
true
spring-projects
spring-framework
20,167
833e74168a69e2ba9c84c47f3e1e78886092731b
Chris Beams
Chris Beams
Merge pull request #46 from pkan/master * pkan/master: Fix typo in spring:eval taglib reference doc Fix typo in ApplicationContext reference doc
merge pull request #46 from pkan/master
39
true
false
6
true
false
false
spring-projects
spring-framework
20,168
00d9c3f5e801acf2c73c0c643dfedcfcf80534e1
Phani Kandula
Chris Beams
Fix typo in spring:eval taglib reference doc - Replace 'javascriptEncoding' with 'javaScriptEscape' Issue: SPR-9188
eval taglib reference doc
25
false
false
4
false
false
false
spring-projects
spring-framework
20,169
6c602d7bbc2f5a897ed1dc4ffa04b1155d9947d4
Phani Kandula
Chris Beams
Fix typo in ApplicationContext reference doc - Add missing '=' sign in sample code for section 4.2.3 Issue: SPR-8856
fix typo in applicationcontext reference doc
44
false
false
6
true
true
true
spring-projects
spring-framework
20,170
15d1d824b54b2ec36a7c926e12644b391b310930
Chris Beams
Chris Beams
Return null correctly from MutablePropertySources#get Prior to this commit, MutablePropertySources#get(String) would throw IndexArrayOutOfBoundsException if the named property source does not actually exist. This is a violation of the PropertySource#get contract as described in its Javadoc. The implementation now cor...
return null correctly from mutablepropertysources#get
53
false
false
5
true
false
false
spring-projects
spring-framework
20,171
43b4997e3f7e8959aff44d778430945c0fe76e6a
Arjen Poutsma
Arjen Poutsma
Support scanned classes in Jaxb2Marshaller Jaxb2Marshaller#supports now supports classes found via package scanning. Issue: SPR-9152
support scanned classes in jaxb2marshaller
42
false
false
5
false
true
false
spring-projects
spring-framework
20,172
83f3750fb3a74d0ac6c7c513b29028b7d49f7b30
Arjen Poutsma
Arjen Poutsma
Support byte[] in JaxbMarshaller under JDK 7 JDK7 changed its reflections API in order to resolve http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5041784 In short, JDK 5 and 6 (wrongly) return GenericArrayTypes in certain reflection scenarios, whereas JDK 7 changed this to return a normal array type. For Jaxb2Mars...
support byte[] in jaxbmarshaller under jdk 7
44
false
false
7
false
true
false
spring-projects
spring-framework
20,173
7ca5fba05ff0ef4dcf076303e1cba19c4b771d94
Chris Beams
Chris Beams
Avoid infinite loop in AbstractResource#contentLength Due to changes made in commit 2fa87a71 for SPR-9118, AbstractResource#contentLength would fall into an infinite loop unless the method were overridden by a subclass (which it is in the majority of use cases). This commit: - fixes the infinite recursion by refact...
avoid infinite loop in abstractresource#contentlength
53
false
false
5
true
true
false
spring-projects
spring-framework
20,174
f4010f14d1d7c87708bd47a72ef5b4fa7012121c
Chris Beams
Chris Beams
Upgrade to Gradle 1.0-milestone-8a - Rename customized .wrapper to default gradle/wrapper directory for out of the box compatibility with STS Gradle tooling - Add .settings/gradle directory to capture defaults when using STS Gradle tooling to import projects
upgrade to gradle 1.0-milestone-8a
34
false
false
4
false
false
false
spring-projects
spring-framework
20,175
0ff28a6b228c08aa3c17223c4c6527603e0d0052
Chris Beams
Chris Beams
Upgrade to docbook-reference-plugin 0.1.3
upgrade to docbook-reference-plugin 0.1.3
41
false
false
4
false
false
false
spring-projects
spring-framework
20,176
f5042d1928f96967b6fe7dec198b55eb4746baa1
Chris Beams
Chris Beams
Merge pull request #41 from sslavic/SPR-7843 * SPR-7843: Predict specific object type in EhCacheFactoryBean
merge pull request #41 from sslavic/spr-7843
44
true
false
6
false
false
false
spring-projects
spring-framework
20,177
0690b58878f0e6c57a443720244049b16ba3cfd5
Stevo Slavic
Chris Beams
Predict specific object type in EhCacheFactoryBean Prior to this change, before a bean is created by EhCacheFactoryBean, its #getObjectType would return only an Ehcache interface. This caused unwanted wiring issues as described in the related JIRA issue. This fix makes use of EhCacheFactoryBean's configuration to det...
predict specific object type in ehcachefactorybean
50
false
false
6
true
true
true
spring-projects
spring-framework
20,178
b2291ff814affcd22bf531a1c9b3a23afe15717c
Chris Beams
Chris Beams
Map ORA-30006 to CannotAcquireLockException as well ORA-00054 is already mapped to CannotAcquireLockException and is described as "resource busy and acquire with NOWAIT specified" As pointed out in the associated JIRA issue, ORA-30006 is quite similar being described as "resource busy; acquire with WAIT timeout...
map ora-30006 to cannotacquirelockexception as well
51
false
false
6
false
false
false
spring-projects
spring-framework
20,179
4df2a14b13ac41d71f8034fa68e1b7e54e3f7a48
Chris Beams
Chris Beams
Fix regression in @PropertySource placeholder resolution Changes in commit 41ade68b50b39485b3cf02b9c6fb8eb74962146b introduced a regression causing all but the first location in the @PropertySource#value array to be ignored during ${...} placeholder resolution. This change ensures that all locations are processed and ...
fix regression in @propertysource placeholder resolution
56
false
false
6
true
true
false
spring-projects
spring-framework
20,180
37d547c506f9fab4f478c1e4bc0f1b8e553bd950
Chris Beams
Chris Beams
Sync with 3.1.x * 3.1.x: Warn re Environment construction and instance vars Disallow empty @PropertySource(value = {}) Fix @PropertySource bug with multiple values final preparations for 3.1.1 release added "receive-timeout" attribute to "jms:listener-container" element
sync with 3.1.x
15
false
false
3
false
false
false
spring-projects
spring-framework
20,181
7535e24deb91135b3349220ec566ced203a708c4
Chris Beams
Chris Beams
Warn re Environment construction and instance vars - Add warning regarding access to default instance variable values during AbstractEnvironment#customizePropertySources callback - Polish AbstractEnvironment Javadoc and formatting Issue: SPR-9013
warn re environment construction and instance vars
50
false
false
7
false
false
false
spring-projects
spring-framework
20,182
80dd32e95ccb6e7c4836a751b1414f4be741a1fe
Chris Beams
Chris Beams
Disallow empty @PropertySource(value = {}) Previously, a user could specify an empty array of resource locations to the @PropertySource annotation, which amounts to a meaningless no-op. ConfigurationClassParser now throws IllegalArgumentException upon encountering any such misconfiguration.
disallow empty @propertysource(value = {})
42
false
false
5
true
true
true
spring-projects
spring-framework
20,183
41ade68b50b39485b3cf02b9c6fb8eb74962146b
Chris Beams
Chris Beams
Fix @PropertySource bug with multiple values Prior to this commit, specifying a named @PropertySource with multiple values would not work as expected. e.g.: @PropertySource( name = "ps", value = { "classpath:a.properties", "classpath:b.properties" }) In this scenario, the implementation would register ...
fix @propertysource bug with multiple values
44
false
false
6
true
true
true
spring-projects
spring-framework
20,184
ff862addbecfb4524ac702854c35a60ecbc1638e
Juergen Hoeller
Juergen Hoeller
final preparations for 3.1.1 release
final preparations for 3.1.1 release
36
false
false
5
false
false
false
spring-projects
spring-framework
20,185
624ba720d5c8fabe4159a27396c7d32a9f38f187
Chris Beams
Chris Beams
Add link to contributor guidelines in readme
add link to contributor guidelines in readme
44
false
false
7
true
true
true
spring-projects
spring-framework
20,186
3e81482760f742d078e71b166cc0f7c3c2eb6abb
Chris Beams
Chris Beams
Sync with 3.1.x * 3.1.x: Demonstrate use of @Configuration as meta-annotation Prune dead code from JmsTransactionManager#doBegin Apply @Configuration BeanNameGenerator consistently Improve @Configuration bean name discovery Fix infinite recursion bug in nested @Configuration Polish static imports Minor f...
sync with 3.1.x
15
false
false
3
false
false
false
spring-projects
spring-framework
20,187
94e3f08a444a9f80d162a5963702697308b699e6
Juergen Hoeller
Juergen Hoeller
added "receive-timeout" attribute to "jms:listener-container" element in JMS namespace (SPR-9114)
listener-container" element in jms namespace (spr-9114)
55
false
false
6
false
false
false
spring-projects
spring-framework
20,188
1c2b1d2c8576391d665e0f25a17427eacd56bf5c
Chris Beams
Chris Beams
Demonstrate use of @Configuration as meta-annotation Issue: SPR-9090
demonstrate use of @configuration as meta-annotation
52
false
false
6
true
true
false
spring-projects
spring-framework
20,189
58e270f7da55256e1eedeccab4c10424cfff4d51
Chris Beams
Chris Beams
Prune dead code from JmsTransactionManager#doBegin
prune dead code from jmstransactionmanager#dobegin
50
false
false
5
true
true
true
spring-projects
spring-framework
20,190
fc416bcb0bac38805c01f65ec1a8a08a13e3836f
Chris Beams
Chris Beams
Apply @Configuration BeanNameGenerator consistently Since the introduction of the AnnotationConfig(Web)ApplicationContext types in Spring 3.0, it has been possible to specify a custom bean name generation strategy via the #setBeanNameGenerator methods available on each of these classes. If specified, that BeanNameGen...
apply @configuration beannamegenerator consistently
51
false
false
4
true
true
false
spring-projects
spring-framework
20,191
e81df2ef3e6b2359de1970f2b0b5df0075abc554
Chris Beams
Chris Beams
Improve @Configuration bean name discovery Prior to this commit, and based on earlier changes supporting SPR-9023, ConfigurationClassBeanDefinitionReader employed a simplistic strategy for extracting the 'value' attribute (if any) from @Configuration in order to determine the bean name for imported and nested configur...
improve @configuration bean name discovery
42
false
false
5
false
true
false
spring-projects
spring-framework
20,192
08e2669b84ec0faa2f7904441fe39ac70b65b078
Chris Beams
Chris Beams
Fix infinite recursion bug in nested @Configuration Prior to this commit, an infinite recursion would occur if a @Configuration class were nested within its superclass, e.g. abstract class Parent { @Configuration static class Child extends Parent { ... } } This is because the processing of the nested...
fix infinite recursion bug in nested @configuration
51
false
false
7
true
true
false
spring-projects
spring-framework
20,193
f3651c99988df740cb89b4ae7b6997ae1776fbb1
Chris Beams
Chris Beams
Polish static imports
polish static imports
21
false
false
3
false
false
false
spring-projects
spring-framework
20,194
a3484aebb300c8021906e35a057d6fe2ec786cd6
Rossen Stoyanchev
Rossen Stoyanchev
Minor fix in ServletResponseMethodArgumentResolver Issues: SPR-8983
minor fix in servletresponsemethodargumentresolver
50
false
false
4
false
false
false
spring-projects
spring-framework
20,195
6fd476e2c5af60f1bf22a5c5c3be194d0f370f42
Juergen Hoeller
Juergen Hoeller
extracted ResourceUtils.useCachesIfNecessary(URLConnection) method (SPR-9117)
extracted resourceutils.usecachesifnecessary(urlconnection) method (spr-9117)
77
false
false
4
false
false
false
spring-projects
spring-framework
20,196
ab98f288e9e98074270e3620edf4f3318184502a
Juergen Hoeller
Juergen Hoeller
prepared for 3.1.1 release
prepared for 3.1.1 release
26
false
false
4
false
false
false
spring-projects
spring-framework
20,197
acaf820941f6f541a2662b9f8e8d543ccb6ccf45
Juergen Hoeller
Juergen Hoeller
CustomSQLExceptionTranslatorRegistry/Registrar etc
customsqlexceptiontranslatorregistry/registrar etc
50
false
false
2
false
false
false
spring-projects
spring-framework
20,198
ddf0d071ad968c9136f1558881ba2de5cd9526a4
Juergen Hoeller
Juergen Hoeller
revised CustomSQLExceptionTranslatorRegistry/Registrar method naming
revised customsqlexceptiontranslatorregistry/registrar method naming
68
false
false
4
false
false
false
spring-projects
spring-framework
20,199
2fa87a71fae2d3074acc48d405779c61a11b646d
Juergen Hoeller
Juergen Hoeller
use custom InputStream traversal instead of a full byte array (SPR-9118)
use custom inputstream traversal instead of a full byte array (spr-9118)
72
false
false
11
true
true
false
spring-projects
spring-framework
20,200
fe57f74c1aa0063e0ccc9739b95078ccf0505a2c
Juergen Hoeller
Juergen Hoeller
PathMatchingResourcePatternResolver preserves caching for JNLP jar connections (SPR-9117)
pathmatchingresourcepatternresolver preserves caching for jnlp jar connections (spr-9117)
89
false
false
8
false
false
false
spring-projects
spring-framework
20,201
81861ca7a83ca637ac8d1f7f53380c0e4cba220f
Juergen Hoeller
Juergen Hoeller
Resource "contentLength()" implementations work with OSGi bundle resources and JBoss VFS resources (SPR-9118)
resource "contentlength()" implementations work with osgi bundle resources and jboss vfs resources (spr-9118)
109
false
false
13
false
false
false
spring-projects
spring-framework
20,202
4831ca27d2a4e67b1811244049ea19140538f29a
Juergen Hoeller
Juergen Hoeller
fixed MethodInvokingJobDetailFactoryBean for compatibility with Quartz 2.0/2.1 (SPR-8889)
fixed methodinvokingjobdetailfactorybean for compatibility with quartz 2.0/2.1 (spr-8889)
89
false
false
8
false
false
false
spring-projects
spring-framework
20,203
1bfa7013a0b5ac1f11abc70b1f940f861b2f70df
Juergen Hoeller
Juergen Hoeller
fixed MethodInvokingJobDetailFactoryBean for compatibility with Quartz 2.0/2.1 ()
fixed methodinvokingjobdetailfactorybean for compatibility with quartz 2.0/2.1 ()
81
false
false
8
false
false
false
spring-projects
spring-framework
20,204
81dfef90efabf4cd761e2d31d45c2ba2e498818c
Chris Beams
Chris Beams
Sync with 3.1.x * 3.1.x: Fix false negative test failure in ResourceTests Compensate for Eclipse vs Sun compiler discrepancy
sync with 3.1.x
15
false
false
3
false
false
false
spring-projects
spring-framework
20,205
1d9d3e6ff79ce9f0eca03b02cd1df705925575da
Chris Beams
Chris Beams
Fix false negative test failure in ResourceTests Prior to changes in commit 57851de88e84006afc104c4f22eb2fbaf2e0d3d1, AbstractResource#getFilename threw IllegalStateException unless overridden by a subclass. Following that change, this method now throws null instead, but ResourceTests#testAbstractResourceExceptions ha...
fix false negative test failure in resourcetests
48
false
false
7
true
true
true
spring-projects
spring-framework
20,206
8e0b1c3a5f957af3049cfa0438317177e16d6de6
Chris Beams
Chris Beams
Compensate for Eclipse vs Sun compiler discrepancy Eclipse allows autoboxing on type inference; Sun javac does not. This means that variables assigned from calls to AnnotationAttributes#getNumber should consistently use object wrappers as opposed to number primitives. There was only one such instance anyway, and has n...
compensate for eclipse vs sun compiler discrepancy
50
false
false
7
false
false
false
spring-projects
spring-framework
20,207
ee36c80ca961a5b2af233cd26a5483d57939c0af
Chris Beams
Chris Beams
Sync with 3.1.x * 3.1.x: (61 commits) Compensate for changes in JDK 7 Introspector Avoid 'type mismatch' errors in ExtendedBeanInfo Polish ExtendedBeanInfo and tests Infer AnnotationAttributes method return types Minor fix in MVC reference doc chapter Hibernate 4.1 etc TypeDescriptor equals implementatio...
sync with 3.1.x
15
false
false
3
false
false
false
spring-projects
spring-framework
20,208
0a5392e37d268d4df9526216531a6655e52b9f38
Chris Beams
Chris Beams
Compensate for changes in JDK 7 Introspector Prior to JDK 7, java.beans.Introspector registered indexed write methods irrespective of return type, for example either of the following methods were legal void setFoo(int i, Foo foo) Object setFoo(int i, Foo foo) This was considered a bug and disallowed starting...
compensate for changes in jdk 7 introspector
44
false
false
7
false
false
false
spring-projects
spring-framework
20,209
b787a68f2050df179f7036b209aa741230a02477
Chris Beams
Chris Beams
Avoid 'type mismatch' errors in ExtendedBeanInfo Prior to this commit, ExtendedBeanInfo would add non-indexed write methods without consideration for the presence of indexed read/write methods, which is invalid per the JavaBeans spec and per the behavior of java.beans.Introspector. That is, a method with the signatur...
avoid 'type mismatch' errors in extendedbeaninfo
48
false
false
6
false
false
false
spring-projects
spring-framework
20,210
ef143d363ecd366f698fef2e3a019d39f3f569a8
Chris Beams
Chris Beams
Polish ExtendedBeanInfo and tests ExtendedBeanInfo - Reduce log messages from warn to debug - Remove now-incorrect comment indicating underlying property descriptors are never modified (they actually are as of SPR-8806) ExtendedBeanInfoTests - Consolidate SPR-8949 tests - Eliminate compiler warnings Issue...
polish extendedbeaninfo and tests
33
false
false
4
false
false
false
spring-projects
spring-framework
20,211
e25f1cbca994dd6592d063a3b4044c6255c5cae2
Chris Beams
Chris Beams
Infer AnnotationAttributes method return types - Drop 'expectedType' parameter from #getClass and #getEnum methods and rely on compiler inference based on type of assigned variable, e.g. public @interface Example { Color color(); Class<? extends UserType> userType(); int order() de...
infer annotationattributes method return types
46
false
false
5
false
false
false
spring-projects
spring-framework
20,212
997c6c56f7e910118ee3956bf2ef198fff853375
Rossen Stoyanchev
Rossen Stoyanchev
Minor fix in MVC reference doc chapter Issues: SPR-9111
minor fix in mvc reference doc chapter
38
false
false
7
false
false
false
spring-projects
spring-framework
20,213
caa50a1d41a7929ea11bcb1f03988e0bce20837d
jhoeller
jhoeller
Merge pull request #33 from trisberg/SQLException-translation-enhancements SQL exception translation enhancements
merge pull request #33 from trisberg/sqlexception-translation-enhancements
74
true
false
6
false
false
false
spring-projects
spring-framework
20,214
6e00456e6747e1015e577ffe0465a7942fbcf30c
jhoeller
jhoeller
Merge pull request #25 from trisberg/fixes-for-SimpleJdbcInsert Fixes for SimpleJdbcInsert [SPR-9006]
merge pull request #25 from trisberg/fixes-for-simplejdbcinsert
63
true
false
6
false
false
false
spring-projects
spring-framework
20,215
a46facc2f95dcceb1bd621d045d804f2fbbf6aeb
Juergen Hoeller
Juergen Hoeller
Hibernate 4.1 etc
hibernate 4.1 etc
17
false
false
3
false
true
false
spring-projects
spring-framework
20,216
9e21d2f74127b73e7ef8bab6bb1446f137970fb9
Juergen Hoeller
Juergen Hoeller
TypeDescriptor equals implementation accepts annotations in any order (SPR-9084)
typedescriptor equals implementation accepts annotations in any order (spr-9084)
80
false
false
9
false
false
false
spring-projects
spring-framework
20,217
947032372479fae3f9da5d64b9e3512896db92a4
Juergen Hoeller
Juergen Hoeller
"setBasenames" uses varargs now (for programmatic setup; SPR-9106)
"setbasenames" uses varargs now (for programmatic setup; spr-9106)
66
false
false
8
false
false
false
spring-projects
spring-framework
20,218
b17d545bb71b51ae46689a88487898dac496544c
Juergen Hoeller
Juergen Hoeller
@ActiveProfiles mechanism works with @ImportResource as well (SPR-8992)
@activeprofiles mechanism works with @importresource as well (spr-8992)
71
false
false
8
false
false
false
spring-projects
spring-framework
20,219
1bd260adaf671f31c64c11f555abff7ca3433bbd
Juergen Hoeller
Juergen Hoeller
polishing
polishing
9
false
false
1
false
false
false
spring-projects
spring-framework
20,220
57851de88e84006afc104c4f22eb2fbaf2e0d3d1
Juergen Hoeller
Juergen Hoeller
clarified Resource's "getFilename" method to consistently return null if resource type does not have a filename (SPR-9043)
clarified resource's "getfilename" method to consistently return null if resource type does not have a filename (spr-9043)
122
false
false
17
false
false
false
spring-projects
spring-framework
20,221
1e1f8c912b3a1c79d040db9608f0e6890cbd2679
Juergen Hoeller
Juergen Hoeller
substituteNamedParameters detects and unwraps SqlParameterValue objects (SPR-9052)
substitutenamedparameters detects and unwraps sqlparametervalue objects (spr-9052)
82
false
false
7
false
false
false
spring-projects
spring-framework
20,222
66bc214a79da1bcae850fc80fae7af2b1b912822
Rossen Stoyanchev
Rossen Stoyanchev
Replace spaces with tabs
replace spaces with tabs
24
false
false
4
true
true
true
spring-projects
spring-framework
20,223
45ad1833315415022a3cefa54f4df531815e41e8
Chris Beams
Chris Beams
Consider security in ClassUtils#getMostSpecificMethod Recent changes in ExtendedBeanInfo involve invoking ClassUtils#getMostSpecificMethod when determining JavaBeans get/set pairs; if Java security settings control disallow reflective access, this results in an AccessControlException. This change defends against this...
consider security in classutils#getmostspecificmethod
53
false
false
4
true
true
false
spring-projects
spring-framework
20,224
66012b951e6fc1f2c8cd9025381f2ae6851bd91c
Thomas Risberg
Thomas Risberg
Adding null check for username being null. The username is usually not null, but it could be for some embedded databases. Always setting generatedKeysColumnNameArraySupported to false when getGeneratedKeysSupported is false, since it can't be supported without having generated keys supported. This change only affect...
adding null check for username being null
41
false
false
7
false
false
false
spring-projects
spring-framework
20,225
f6c7d99ba4c9ceec77426306a60b53b1a9f6f14c
Thomas Risberg
Thomas Risberg
Improvements for registering custom SQL exception translators in app contexts. Adding a static CustomSQLExceptionTranslatorRegistry and a CustomSQLExceptionTranslatorRegistrar that can be used to register custom SQLExceptionTranslator implementations for specific databases from any application context. This can be us...
improvements for registering custom sql exception translators in app contexts
77
false
false
10
false
false
false
spring-projects
spring-framework
20,226
e202d89c29fe9380b7ebc485eb16353b45937096
Thomas Risberg
Thomas Risberg
SPR-7680 Adding QueryTimeoutException to the DataAccessException hierarchy
spr-7680 adding querytimeoutexception to the dataaccessexception hierarchy
74
false
false
7
false
false
false
spring-projects
spring-framework
20,227
21aed042eac791fbfd49da4f703b5b8e5e84422a
Rossen Stoyanchev
Rossen Stoyanchev
Minor polish in WebMvcConfigurationSupport
minor polish in webmvcconfigurationsupport
42
false
false
4
false
false
false
spring-projects
spring-framework
20,228
f1ecd1ca2a73158bd88dc5059ecbf0c24154f61d
Chris Beams
Chris Beams
Detect overridden boolean getters in ExtendedBeanInfo Prior to this commit, and due to idiosyncracies of java.beans.Introspector, overridden boolean getter methods were not detected by Spring's ExtendedBeanInfo, which relied on too-strict Method equality checks when selecting read and write methods. Now ExtendedBeanI...
detect overridden boolean getters in extendedbeaninfo
53
false
false
6
true
true
false
spring-projects
spring-framework
20,229
7ceb02257e558585e12633db279a46fdd6737c71
Juergen Hoeller
Juergen Hoeller
Removed deprecated JdoTemplate and JdoInterceptor classes; formally requiring JDO 3.0+ now
removed deprecated jdotemplate and jdointerceptor classes; formally requiring jdo 3.0+ now
90
false
false
11
false
false
false
spring-projects
spring-framework
20,230
cc0ea4a824e9929c6bc74f952e75bf6d282ef5c0
Juergen Hoeller
Juergen Hoeller
Removed deprecated saveOrUpdateAll method from HibernateOperations
removed deprecated saveorupdateall method from hibernateoperations
66
false
false
6
false
false
false
spring-projects
spring-framework
20,231
541f3edd9e4de421b93da7674a855f9ae905a940
Juergen Hoeller
Juergen Hoeller
Fully upgraded orm.hibernate3 package to require Hibernate 3.6+ now
fully upgraded orm.hibernate3 package to require hibernate 3.6+ now
67
false
false
9
false
false
false
spring-projects
spring-framework
20,232
e11cf5f061ef4c568c04f72ae535b0f409dbbebb
Juergen Hoeller
Juergen Hoeller
Upgraded JdkVersion and CollectionFactory to JDK 1.6+, also removing deprecated methods from CollectionFactory
upgraded jdkversion and collectionfactory to jdk 1.6+, also removing deprecated methods from collectionfactory
110
false
false
13
false
false
false
spring-projects
spring-framework
20,233
cf93d38c5605b333e1a6ffc78b6f76a7c586b633
Juergen Hoeller
Juergen Hoeller
Added "destroyBean(Object)" method to AutowireCapableBeanFactory Driven by the need for implementing Bean Validation 1.1's "releaseInstance" method in SpringConstraintValidatorFactory, as a direct counterpart to the use of AutowireCapableBeanFactory's "createBean(Class)" in "getInstance". Issue: SPR-8199
added "destroybean(object)" method to autowirecapablebeanfactory
64
false
false
5
false
false
false
spring-projects
spring-framework
20,234
853826a774580566a187208849b23da8aeb7999e
Juergen Hoeller
Juergen Hoeller
Use JDK 1.6's Collections.newSetFromMap instead of manually accessing Maps with dummy Boolean values
use jdk 1.6's collections.newsetfrommap instead of manually accessing maps with dummy boolean values
100
false
false
13
false
true
false
spring-projects
spring-framework
20,235
e0c56a124ab47b8b2aa0415c7b0ab32c20c76821
Juergen Hoeller
Juergen Hoeller
Consistently refer to most recent version of javax.el, in order to be compatible with Hibernate Validator 5.0 when doing integration tests Issue: SPR-8199
consistently refer to most recent version of javax.el, in order to be compatible with hibernate validator 5.0 when doing integration tests
138
false
false
21
false
false
false
spring-projects
spring-framework
20,236
0d0122239d84ca27069350de19394273ea3aced3
Juergen Hoeller
Juergen Hoeller
Initial support for Bean Validation 1.1 and Hibernate Validator 5.0 MethodValidationInterceptor autodetects Bean Validation 1.1's ExecutableValidator API now and uses it in favor of Hibernate Validator 4.2's native variant. SpringConstraintValidatorFactory implements Bean Validation 1.1 "releaseInstance" method agains...
initial support for bean validation 1.1 and hibernate validator 5.0
67
false
false
10
false
false
false
spring-projects
spring-framework
20,237
23bf5f563bd4757500aac0cf94e91be61c1e159a
Juergen Hoeller
Juergen Hoeller
Added "destroyBean(Object)" method to AutowireCapableBeanFactory Driven by the need for implementing Bean Validation 1.1's "releaseInstance" method in SpringConstraintValidatorFactory, as a direct counterpart to the use of AutowireCapableBeanFactory's "createBean(Class)" in "getInstance". Issue: SPR-8199
added "destroybean(object)" method to autowirecapablebeanfactory
64
false
false
5
false
false
false
spring-projects
spring-framework
20,238
9f9dc34b534ef501aa2e3e747f81ccd82be1acda
Juergen Hoeller
Juergen Hoeller
No @Override annotations for JPA 2.1 methods since we're building against JPA 2.0 Issue: SPR-8194
no @override annotations for jpa 2.1 methods since we're building against jpa 2.0
81
false
false
13
false
false
false
spring-projects
spring-framework
20,239
4004e53d971ce65631bb55e533edbb95664a69a7
Juergen Hoeller
Juergen Hoeller
JSR-236 support, in particular adapting to JSR-236 Triggers and exposing additional metadata through ManagedTasks This is built into ConcurrentTaskExecutor and ConcurrentTaskScheduler now, automatically detecting the JSR-236 ExecutorService variants and adapting to them. Issue: SPR-8195
jsr-236 support, in particular adapting to jsr-236 triggers and exposing additional metadata through managedtasks
113
false
false
14
false
false
false
spring-projects
spring-framework
20,240
52fd84bb577296f78881388ff72b383a4e4808a3
Juergen Hoeller
Juergen Hoeller
JTA 1.2 support, in particular for the javax.transaction.Transactional annotation Issue: SPR-9139
jta 1.2 support, in particular for the javax.transaction.transactional annotation
81
false
false
9
true
false
false
spring-projects
spring-framework
20,241
ff160f9aebf2d8cddbe8984aa50b1b48deca1d28
Juergen Hoeller
unknown
JPA 2.1 support, in particular for SynchronizationType.UNSYNCHRONIZED In the course of this effort, our joinTransaction() support has been overhauled to work for shared EntityManagers as well, since an unsynchronized shared EntityManager will nevertheless be scoped for the current transaction but not automatically joi...
jpa 2.1 support, in particular for synchronizationtype.unsynchronized
69
false
false
7
false
false
false
spring-projects
spring-framework
20,242
a3d7dc09ef7af361705704ca9f457b4901815663
Juergen Hoeller
unknown
First pass completed, with support for the standard JMS 2.0 API in our CachingConnectionFactory and support for a delivery delay setting in JmsTemplate. Note that none of this has been tested against an actual JMS 2.0 provider yet, due to no such provider being available yet. Known limitations: * Spring's SingleConnec...
first pass completed, with support for the standard jms 2.0 api in our cachingconnectionfactory and support for a delivery delay setting in jmstemplate. note that none of this has been tested against an actual jms 2.0 provider yet, due to no such provider being available yet
275
false
false
46
false
false
false
spring-projects
spring-framework
20,243
41737e827cf47c933f664b1256af67dd278e1620
Sam Brannen
Sam Brannen
Remove warning suppression in mocks This commit removes the suppression of warnings in Servlet and Portlet mocks since such suppression is no longer necessary with the upgrade to version 3.0 of the Servlet specification.
remove warning suppression in mocks
35
false
false
5
true
true
true
spring-projects
spring-framework
20,244
b78fa2715a6a0ee7070dadd9647e4a112fd425cb
Juergen Hoeller
Juergen Hoeller
Assigned cache manager name in order to avoid EhCache assertion failure in case of multiple tests executed on the same VM
assigned cache manager name in order to avoid ehcache assertion failure in case of multiple tests executed on the same vm
121
false
false
21
false
false
false
spring-projects
spring-framework
20,245
0d23a9d4a6d66cbd5fa93adc65daf532c6ec09f7
Juergen Hoeller
Juergen Hoeller
Upgraded integration test dependencies to Servlet 3.0 as well
upgraded integration test dependencies to servlet 3.0 as well
61
false
false
9
false
false
false
spring-projects
spring-framework
20,246
deba32cad9f9587c6e84af7661025b096f27e0de
Juergen Hoeller
Juergen Hoeller
Upgraded all Servlet API mocks to Servlet 3.0 (with a little bit of Servlet 3.1 support in MockHttpServletResponse)
upgraded all servlet api mocks to servlet 3.0 (with a little bit of servlet 3.1 support in mockhttpservletresponse)
115
false
false
18
false
false
false
spring-projects
spring-framework
20,247
d03de21d62128357248353a41c12075bc6881f8c
Juergen Hoeller
Juergen Hoeller
Removed explicit JAXB 2.1 dependency (included in JDK 1.7 anyway)
removed explicit jaxb 2.1 dependency (included in jdk 1.7 anyway)
65
false
false
10
false
false
false
spring-projects
spring-framework
20,248
bb14c16938d3b885a032243ced30d461c62affa8
Juergen Hoeller
Juergen Hoeller
Revised WebServiceFeature handling: requiring JAX-WS 2.1+, including support for JAX-WS 2.2 service-level features now
requiring jax-ws 2.1+, including support for jax-ws 2.2 service-level features now
82
false
false
11
false
false
false
spring-projects
spring-framework
20,249
bea990196dbec21b7ab70aecea8f776a3b10879e
Juergen Hoeller
Juergen Hoeller
Fixed job scheduling data test for Quartz 1.8
fixed job scheduling data test for quartz 1.8
45
false
false
8
false
false
false
spring-projects
spring-framework
20,250
af3c3ef15c5e79be78ae2cf3087658c408157a07
Juergen Hoeller
Juergen Hoeller
Only call EhCacheManagerFactoryBean's destroy() method when actually initialized
only call ehcachemanagerfactorybean's destroy() method when actually initialized
80
false
false
8
false
false
false
spring-projects
spring-framework
20,251
5472e975f63df78d5cbb06dd5240552e60c968e5
Juergen Hoeller
Juergen Hoeller
Removed deprecated core.enums package
removed deprecated core.enums package
37
false
false
4
false
false
false
spring-projects
spring-framework
20,252
28aa34f7ff01bd972dd6225bf471ed114bae9b9f
Juergen Hoeller
Juergen Hoeller
Removed build reference to spring-struts module
removed build reference to spring-struts module
47
false
false
6
false
false
false
spring-projects
spring-framework
20,253
ebb3d32ea8086d1314c737046f308ddab5244a33
Juergen Hoeller
Juergen Hoeller
Removed deprecated core.enums package
removed deprecated core.enums package
37
false
false
4
false
false
false
spring-projects
spring-framework
20,254
f2b79c80b03d18d2a7d5767cc3ac482ccfefedd8
Juergen Hoeller
Juergen Hoeller
Spring's EhCache setup builds on EhCache 2.1+ now Specifically, EhCacheFactoryBean extends CacheConfiguration now and therefore inherits all configuration properties of the underlying EhCache version. This reduces the need for catching up with new EhCache properties on our side. Issue: SPR-8258
spring's ehcache setup builds on ehcache 2.1+ now
49
false
false
8
false
false
false
spring-projects
spring-framework
20,255
e3fe9b11716f7e650ef8bc5ad18c832fbbf11525
Juergen Hoeller
Juergen Hoeller
Upgraded to Quartz 1.8 and Velocity 1.7
upgraded to quartz 1.8 and velocity 1.7
39
false
false
7
false
false
false
spring-projects
spring-framework
20,256