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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
19a75f2c668de369f6e9dd10d0441841e2daea99 | Sam Brannen | Sam Brannen | Document meta-annotation support in AnnotationUtils
Issue: SPR-12940 | document meta-annotation support in annotationutils | 51 | false | false | 5 | false | false | false | spring-projects | spring-framework | 15,557 |
ed88b7fe085a2b19e13972e1abb66f760bdd7486 | Sam Brannen | Sam Brannen | Reorganize tests in AnnotationUtilsTests for greater clarity | reorganize tests in annotationutilstests for greater clarity | 60 | false | false | 7 | true | true | false | spring-projects | spring-framework | 15,558 |
8a1f9f8aa37370868ea12be6e2feed8049f97e2b | Sam Brannen | Sam Brannen | Fix typo in exception message | fix typo in exception message | 29 | false | false | 5 | true | true | true | spring-projects | spring-framework | 15,559 |
713fc5c4ab2a7b4aaf3685db2bea356eddef0db3 | Sebastien Deleuze | Sebastien Deleuze | Add onTimeout() and onCompletion() callbacks to ResponseBodyEmitter
Issue: SPR-12939 | add ontimeout() and oncompletion() callbacks to responsebodyemitter | 67 | false | false | 7 | true | true | false | spring-projects | spring-framework | 15,560 |
5cbe4b948d15fceb98ba2800d7309a632db163d6 | Sam Brannen | Sam Brannen | Introduce dedicated 'cache' subpackage in the TCF
Since the ContextCache is now a published SPI, it and its collaborators
have been moved to a dedicated 'org.sfw.test.context.cache' subpackage.
Issue: SPR-12683 | introduce dedicated 'cache' subpackage in the tcf | 49 | false | false | 7 | true | false | true | spring-projects | spring-framework | 15,561 |
ca91956bdbd54b7f25fd780f0f1292b657a0d3d9 | Stephane Nicoll | Stephane Nicoll | Do not retain BeanFactory ref
This is a rework of fd7153f that also now clears the reference to the
BeanFactory when the context is disposed.
Issue: SPR-12518 | do not retain beanfactory ref | 29 | false | false | 5 | false | false | false | spring-projects | spring-framework | 15,562 |
5b0a0f4db5e1e7527bb76f10e55ce0d539571ab6 | Sebastien Deleuze | Sebastien Deleuze | Support CompletableFuture as alternative to DeferredResult in MVC
Issue: SPR-12597 | support completablefuture as alternative to deferredresult in mvc | 65 | false | false | 8 | false | true | false | spring-projects | spring-framework | 15,563 |
72894b26c24b1ea31c6dda4634cfde67e7dc3050 | Juergen Hoeller | Stephane Nicoll | Fix conversion of Message<?> payload for replies
If a custom MessageConverter is set, it is not used for replies defined
via the Message abstraction. This commit harmonizes the behaviour of the
`MessagingMessageConverter` so that the conversion of the payload can
be converted for both incoming and outgoing messages.
... | fix conversion of message<?> payload for replies | 48 | false | false | 7 | true | true | true | spring-projects | spring-framework | 15,564 |
444b9032be7fa73d12103cbf351f82751b08a95b | Stephane Nicoll | Stephane Nicoll | Apply DestinationResolver to listener container
Previously, a custom `DestinationResolver` was not made available
to the underlying `MessageListener`: if a reply needs to be sent, the
default `DestinationResolver` was used.
This commit ensures that if a custom `DestinationResolver` has been set,
it is also configured... | apply destinationresolver to listener container | 47 | false | false | 5 | true | true | true | spring-projects | spring-framework | 15,565 |
9a65eec36fdbdf76c4ac45e3a1e106f0d26362d1 | Sebastien Deleuze | Sebastien Deleuze | Avoid registering CorsConfiguration for methods without @CrossOrigin
Issue: SPR-12931 | avoid registering corsconfiguration for methods without @crossorigin | 68 | false | false | 7 | false | false | false | spring-projects | spring-framework | 15,566 |
e829b2aa1de5a85d746930ddff24be9cdbff4cf5 | Sam Brannen | Sam Brannen | Polish Javadoc for ContextCache | polish javadoc for contextcache | 31 | false | false | 4 | false | false | false | spring-projects | spring-framework | 15,567 |
93f403cbf65ff4d584dc2d168c929d5683e065a4 | Sam Brannen | Sam Brannen | Ensure that contexts loaded by the TCF are active
This commit adds an assertion to DefaultTestContext's
getApplicationContext() method to ensure that a context loaded by the
Spring TestContext Framework (TCF) or retrieved from the ContextCache
is still active. This extra check helps to avoid situations where
developer... | ensure that contexts loaded by the tcf are active | 49 | false | false | 9 | false | false | false | spring-projects | spring-framework | 15,568 |
d66d1605430c73444082d219214edb74327d3c13 | Sam Brannen | Sam Brannen | Use ConcurrentHashMaps in DefaultContextCache
The changes made in 0cb22fc8f34a29c42313056671a947444b60050b would
result in contexts not being properly closed if evicted from the
ConcurrentReferenceHashMap by the Garbage Collector.
This commit reverts those changes and returns to using standard
ConcurrentHashMaps for ... | use concurrenthashmaps in defaultcontextcache | 45 | false | false | 4 | true | true | true | spring-projects | spring-framework | 15,569 |
c52a0ccdfdc238e972e720f99e9ff86b6c0e8181 | Sam Brannen | Sam Brannen | Introduce TestContextManager(TestContextBootstrapper) constructor
Issue: SPR-12683 | introduce testcontextmanager(testcontextbootstrapper) constructor | 65 | false | false | 3 | true | true | false | spring-projects | spring-framework | 15,570 |
9e6a5ae4a748bedba9caca39158d8c16d541fa23 | Sam Brannen | Sam Brannen | Merge pull request #780 from sbrannen/SPR-12683
Improve extensibility of TestContext bootstrapping & context caching
These commits include numerous refactorings and enhancements to the
bootstrapping and context caching mechanisms in the Spring TestContext
Framework.
Issue: SPR-12683 | merge pull request #780 from sbrannen/spr-12683 | 47 | true | false | 6 | false | false | false | spring-projects | spring-framework | 15,571 |
129488cb4fba9592cfa3f0091ef2ecb25881b72a | Sam Brannen | Sam Brannen | Improve extensibility of TestContext bootstrapping & context caching
- DefaultBootstrapContext and DefaultCacheAwareContextLoaderDelegate
are now public classes in the 'support' subpackage.
- Introduced getCacheAwareContextLoaderDelegate() in
AbstractTestContextBootstrapper as an extension point for configuri... | improve extensibility of testcontext bootstrapping & context caching | 68 | false | false | 8 | true | true | false | spring-projects | spring-framework | 15,572 |
e6c24f71672a14a27179bef15a592cea029177ee | Sam Brannen | Sam Brannen | Convert ContextCache to interface with default implementation
- ContextCache is now a public interface.
- Introduced public DefaultContextCache implementation in the 'support'
subpackage.
Issue: SPR-12683 | convert contextcache to interface with default implementation | 61 | false | false | 7 | true | true | false | spring-projects | spring-framework | 15,573 |
c9d597f5191f0bc3be69d689baf38e3095845777 | Sam Brannen | Sam Brannen | Introduce createBootstrapContext() extension in TestContextManager
Issue: SPR-12683 | introduce createbootstrapcontext() extension in testcontextmanager | 66 | false | false | 5 | true | true | false | spring-projects | spring-framework | 15,574 |
0b054f9fbd1e0fd818e62fcc8de05b2150814ee2 | Sam Brannen | Sam Brannen | Improve Javadoc for TestContextBootstrapper | improve javadoc for testcontextbootstrapper | 43 | false | false | 4 | true | true | true | spring-projects | spring-framework | 15,575 |
186abcb054303c30620ecf3620be25e7b9cf7e29 | Sam Brannen | Sam Brannen | Introduce buildTestContext() in TestContextBootstrapper
This commit moves the responsibility of building a TestContext from the
TestContextManager to a TestContextBootstrapper.
In addition, DefaultTestContext is now a public class residing in the
"support" subpackage.
Issue: SPR-12683 | introduce buildtestcontext() in testcontextbootstrapper | 55 | false | false | 4 | false | true | false | spring-projects | spring-framework | 15,576 |
0392a88c6954bdcd391eea07b513973ebee3ba08 | Sam Brannen | Sam Brannen | Move static ContextCache to DefaultCacheAwareContextLoaderDelegate
Issue: SPR-12683 | move static contextcache to defaultcacheawarecontextloaderdelegate | 66 | false | false | 5 | true | true | false | spring-projects | spring-framework | 15,577 |
0e287c1a90513971aea03941a5fbfca48b089f20 | Sam Brannen | Sam Brannen | Introduce resetContextCache() in ContextCacheTestUtils | introduce resetcontextcache() in contextcachetestutils | 54 | false | false | 4 | true | true | false | spring-projects | spring-framework | 15,578 |
dc345dcb3d06b0acd29099cf1d78600021c42c57 | Sam Brannen | Sam Brannen | Polish TestContextManager | polish testcontextmanager | 25 | false | false | 2 | false | false | false | spring-projects | spring-framework | 15,579 |
0cb22fc8f34a29c42313056671a947444b60050b | Sam Brannen | Sam Brannen | Use SoftReferences for context caching in the TCF
Prior to this commit, the ContextCache in the Spring TestContext
Framework (TCF) cached ApplicationContexts in a ConcurrentHashMap using
strong references. This practice can occasionally lead to
OutOfMemoryErrors when running a large number of tests in a test suite
wit... | use softreferences for context caching in the tcf | 49 | false | false | 8 | true | true | true | spring-projects | spring-framework | 15,580 |
2a4f4cd258967494ba41fba1ef48d98fedaf1e85 | Sam Brannen | Sam Brannen | Introduce reset() method in ContextCache | introduce reset() method in contextcache | 40 | false | false | 5 | true | true | true | spring-projects | spring-framework | 15,581 |
c29eae3307c718db7fb4b9ced2ff2a30fcb62b71 | Rossen Stoyanchev | Rossen Stoyanchev | Support user destinations with multiple app servers
This change adds support for broadcasting messages with unresolved
user destinations so that other servers can try to resolve it.
That enables sending messages to users who may be connected to a
different server.
Issue: SPR-11620 | support user destinations with multiple app servers | 51 | false | false | 7 | true | true | false | spring-projects | spring-framework | 15,582 |
c384945a17ce6c0ffc3294ea87bc0b354d5c4555 | Rossen Stoyanchev | Rossen Stoyanchev | Polish "user" destination support package
Issue: SPR-11620 | polish "user" destination support package | 41 | false | false | 5 | false | false | false | spring-projects | spring-framework | 15,583 |
3c5a9b4e1d302b789fcad45a1f75715618dff0e7 | Sam Brannen | Sam Brannen | Introduce class-level @DirtiesContext tests for TestNG
Prior to this commit, ClassLevelDirtiesContextTests existed for
verifying the expected behavior of @DirtiesContext declared at the
class level in conjunction with JUnit and SpringJUnit4ClassRunner.
This commit introduces analogous tests for TestNG in the new
Clas... | introduce class-level @dirtiescontext tests for testng | 54 | false | false | 6 | false | false | false | spring-projects | spring-framework | 15,584 |
d31f3ee0b215cebcc23019ce86493deb141d7c79 | Sam Brannen | Sam Brannen | Suppress warning in ServletAnnotationControllerHandlerMethodTests | suppress warning in servletannotationcontrollerhandlermethodtests | 65 | false | false | 4 | false | true | false | spring-projects | spring-framework | 15,585 |
afe42cd2a24ebc93c67a02485baa3b2be38013d2 | Juergen Hoeller | Juergen Hoeller | Upgrade to JavaMail 1.5.3 (and Hibernate 4.3.9) | upgrade to javamail 1.5.3 (and hibernate 4.3.9) | 47 | false | false | 7 | false | false | false | spring-projects | spring-framework | 15,586 |
d398bb7c5166f5a4a79d2e2ced5fa1c88b695a5d | Juergen Hoeller | Juergen Hoeller | DefaultMessageListenerContainer uses receiveTimeout for wait call on shutdown
Issue: SPR-11841 | defaultmessagelistenercontainer uses receivetimeout for wait call on shutdown | 77 | false | false | 8 | false | false | false | spring-projects | spring-framework | 15,587 |
cddcf3637d1bb035a47e09f1d669040507025047 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 15,588 |
050e581c103d61fe8cefb038748d83f2a9f09749 | Juergen Hoeller | Juergen Hoeller | StatementCreatorUtils.setValue only uses setString etc for Types.OTHER in case of Oracle
Issue: SPR-12890 | statementcreatorutils.setvalue only uses setstring etc for types.other in case of oracle | 88 | false | false | 11 | false | false | false | spring-projects | spring-framework | 15,589 |
10a51a4f1957e5c579e9e63c023d422b0db55793 | Juergen Hoeller | Juergen Hoeller | InvocableHandlerMethod logs argument resolution exceptions at debug level
Issue: SPR-12925 | invocablehandlermethod logs argument resolution exceptions at debug level | 73 | false | false | 8 | false | false | false | spring-projects | spring-framework | 15,590 |
fac639971ac9fb7384473e63ce6762d6b2b9d001 | Stephane Nicoll | Stephane Nicoll | Merge remote-tracking branch 'origin/master' | merge remote-tracking branch 'origin/master' | 44 | true | false | 4 | false | false | false | spring-projects | spring-framework | 15,591 |
f98a6c6b6ac6e391f3eee7c4a7f8690a869403fd | Stephane Nicoll | Stephane Nicoll | Support expression in @SendTo
The attributes of @JmsListener allows to specify the reference to a key
in the Environment but @SendTo did not.
This commit fixes this inconsistency so that response destinations are
now also externally configurable.
Issue: SPR-12899 | support expression in @sendto | 29 | false | false | 4 | false | true | false | spring-projects | spring-framework | 15,592 |
9ed0a56d840886e4d6d9d90a4e21066c789f128e | Juergen Hoeller | Juergen Hoeller | AbstractApplicationContext collects early ApplicationEvents and publishes them once the multicaster is available
Issue: SPR-12902 | abstractapplicationcontext collects early applicationevents and publishes them once the multicaster is available | 112 | false | false | 12 | false | false | false | spring-projects | spring-framework | 15,593 |
65ba72f1fc61c5424564cc94267d9a0733645851 | Juergen Hoeller | Juergen Hoeller | FactoryBean type check logs currently-in-creation exception at debug level
Issue: SPR-12900 | factorybean type check logs currently-in-creation exception at debug level | 74 | false | false | 9 | false | false | false | spring-projects | spring-framework | 15,594 |
aa49949d7ad09944db4284b957d754e8189ecc74 | Juergen Hoeller | Juergen Hoeller | Bean type mismatch check accepts assignable values according to ClassUtils
Issue: SPR-12905 | bean type mismatch check accepts assignable values according to classutils | 74 | false | false | 10 | false | false | false | spring-projects | spring-framework | 15,595 |
2c7d2d38a9a3499947e7a83d9f0a81e8b4c45dc3 | Stephane Nicoll | Stephane Nicoll | Support custom resolution of response destination
Previously, the "pubSubDomain" drove the resolution of both the
destination of the listener and the default response destination.
A new "replyPubSubDomain" attribute has been added on the base listener
and can be used to listen on a topic and reply to a queue (or vic... | support custom resolution of response destination | 49 | false | false | 6 | true | true | true | spring-projects | spring-framework | 15,596 |
e403aefe860d12f7427655f4fd2a59966a5d6442 | Juergen Hoeller | Juergen Hoeller | Proper exception in case of an @Bean method call encountering a bean type mismatch
Issue: SPR-12905 | proper exception in case of an @bean method call encountering a bean type mismatch | 82 | false | false | 14 | false | false | false | spring-projects | spring-framework | 15,597 |
1da98b054210b1bcb4e65cde66e378e034b1baa3 | Juergen Hoeller | Juergen Hoeller | @Bean-returned FactoryBean proxy delegates to actual target instance now
Issue: SPR-12915 | @bean-returned factorybean proxy delegates to actual target instance now | 72 | false | false | 9 | false | false | false | spring-projects | spring-framework | 15,598 |
96e6406b4b45c223f85257d09f03c069be62ec20 | Sam Brannen | Sam Brannen | Clarify semantics for multiple profiles in @Profile | clarify semantics for multiple profiles in @profile | 51 | false | false | 7 | true | true | false | spring-projects | spring-framework | 15,599 |
fafb823e8de25ad426e01a927f08042718b32fd6 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 15,600 |
af272c212419a373d09078eb717e5f2195962f53 | Juergen Hoeller | Juergen Hoeller | HttpEntity and its subclasses insist on same target type for equality
Issue: SPR-12910 | httpentity and its subclasses insist on same target type for equality | 69 | false | false | 11 | false | false | false | spring-projects | spring-framework | 15,601 |
8b2d9951e0e9d95b561bb04dbc924a023161bc60 | Juergen Hoeller | Juergen Hoeller | AnnotationAsyncExecutionAspect properly accepts ListenableFuture return type
Issue: SPR-12895 | annotationasyncexecutionaspect properly accepts listenablefuture return type | 76 | false | false | 6 | false | false | false | spring-projects | spring-framework | 15,602 |
c006b74e910ef20e66fb0f4e7eddd7d97490ffc8 | Sam Brannen | Sam Brannen | Make AbsTstCtxBootstrapper.resolveContextLoader protected
This commit increases the extensibility of
AbstractTestContextBootstrapper by making the resolveContextLoader()
and resolveExplicitContextLoaderClass() methods protected instead of
private.
Furthermore, resolveContextLoader() now throws an IllegalStateExceptio... | make abststctxbootstrapper.resolvecontextloader protected | 57 | false | false | 3 | false | true | false | spring-projects | spring-framework | 15,603 |
1226596b8b15454acbc15f422b9afb96c4d09e12 | Sam Brannen | Sam Brannen | Document connection handling in ScriptUtils
This commit improves the documentation for ScriptUtils by explicitly
mentioning that a JDBC Connection supplied to the one of the
executeSqlScript() methods will not be released automatically.
Issue: SPR-12908 | document connection handling in scriptutils | 43 | false | false | 5 | false | false | false | spring-projects | spring-framework | 15,604 |
e581244370d2128462d4f5b57eabcb39f34d0210 | Sam Brannen | Sam Brannen | Delete legacy JdbcTestUtils in spring-orm | delete legacy jdbctestutils in spring-orm | 41 | false | false | 5 | false | true | false | spring-projects | spring-framework | 15,605 |
dba48a1ff5eef94504a129902d59788c4dfd0c6b | Sam Brannen | Sam Brannen | Isolate thrown exception in AssertTests | isolate thrown exception in asserttests | 39 | false | false | 5 | true | true | true | spring-projects | spring-framework | 15,606 |
fefbd8f85b8a75af0e968d18354674846d443512 | Sam Brannen | Sam Brannen | Polish Javadoc for StringUtils and Assert | polish javadoc for stringutils and assert | 41 | false | false | 6 | false | false | false | spring-projects | spring-framework | 15,607 |
47f8d435e621163f56727891bb2e874e76e1f9b8 | Sam Brannen | Sam Brannen | Introduce isNotEmpty() aliases in StringUtils
This commit introduces isNotEmpty() aliases for the existing hasLength()
methods in StringUtils.
Issue: SPR-12909 | introduce isnotempty() aliases in stringutils | 45 | false | false | 5 | true | true | true | spring-projects | spring-framework | 15,608 |
a3df66931fcfc8d84f85da8121d9e74f3044d5a1 | Rossen Stoyanchev | Rossen Stoyanchev | Add path-helper attribute for websocket namespace
Issue: SPR-11771 | add path-helper attribute for websocket namespace | 49 | false | false | 6 | false | false | false | spring-projects | spring-framework | 15,609 |
e9dee82a8daaa0cadbf16540b795b63cd9559a6f | Sam Brannen | Sam Brannen | Add descriptions to Gradle tasks in spring-test | add descriptions to gradle tasks in spring-test | 47 | false | false | 7 | true | true | true | spring-projects | spring-framework | 15,610 |
c78fd204df95d6241320b0202dac0a3f3b1f6183 | Sam Brannen | Sam Brannen | Explicitly mention DelegatingWebMvcConfiguration in @EnableWebMvc Javadoc | explicitly mention delegatingwebmvcconfiguration in @enablewebmvc javadoc | 73 | false | false | 6 | false | false | false | spring-projects | spring-framework | 15,611 |
da04362a5e52fae46ff817f8167a2f55a25eac78 | Sam Brannen | Sam Brannen | Log context cache statistics in the TCF
Prior to this commit, finding out how many application contexts had
been loaded within a test suite required the use of reflection and a
bit of hacking.
This commit addresses this issue by logging ContextCache statistics
whenever an application context is loaded by the Spring T... | log context cache statistics in the tcf | 39 | false | false | 7 | true | true | true | spring-projects | spring-framework | 15,612 |
8b5fda5ad97ea75fcad075e94cf1c791100c2079 | Sebastien Deleuze | Sebastien Deleuze | Use unversioned XSD links in code examples | use unversioned xsd links in code examples | 42 | false | false | 7 | true | true | true | spring-projects | spring-framework | 15,613 |
6534d0035db3c64eedbc35ee47e8f3aaf522791b | Stephane Nicoll | Stephane Nicoll | Add documentation for the keep-alive flag
This commit updates the documentation of the task:executor element to
reference the keep-alive flag.
Issue: SPR-12407 | add documentation for the keep-alive flag | 41 | false | false | 6 | true | true | true | spring-projects | spring-framework | 15,614 |
1fff631daa65c228a1e2caeb387d1b8cd6b6e2e8 | Brian Clozel | Brian Clozel | Fix SubProtocolHandler duplicate registration
Prior to this change, duplicate SubProtocolHandlers could be registered
when configuring STOMP with several registrations:
public void registerStompEndpoints
(final StompEndpointRegistry registry) {
this.endpointRegistry.addEndpoint("/stompOverWebSocke... | fix subprotocolhandler duplicate registration | 45 | false | false | 4 | true | true | true | spring-projects | spring-framework | 15,615 |
330897b411000a30bcb94c81a7d1304c01bddae6 | Stephane Nicoll | Stephane Nicoll | Fix typo | fix typo | 8 | false | false | 2 | false | true | false | spring-projects | spring-framework | 15,616 |
14fef198f063637d41995db662eface0478e131e | Juergen Hoeller | Juergen Hoeller | Explicitly clear manually registered singleton names after destroySingletons call
As indicated by our recent Spring Integration test failure, autowiring attempts after context closing did not fail before. After the introduction of the separately managed manualSingletonNames set, the algorithm could run into a situatio... | explicitly clear manually registered singleton names after destroysingletons call | 81 | false | false | 9 | false | false | false | spring-projects | spring-framework | 15,617 |
285dca027bdbfd79a33673c66d74f6fa6bb9e2b6 | Juergen Hoeller | Juergen Hoeller | Polishing
(cherry picked from commit acefd83) | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 15,618 |
e989b2621fc70dd520f3d0e6858e17149355fcb0 | Juergen Hoeller | Juergen Hoeller | Test for cyclic type declaration handling in TypeDescriptor
Issue: SPR-9735
(cherry picked from commit 7fa3e65) | test for cyclic type declaration handling in typedescriptor | 59 | false | false | 8 | false | false | false | spring-projects | spring-framework | 15,619 |
3c3e07e324e54d1175d59d6284646b363cd56f5d | Juergen Hoeller | Juergen Hoeller | Defensive handling of manually registered singleton names (based on Spring Integration test failure)
Issue: SPR-12404 | defensive handling of manually registered singleton names (based on spring integration test failure) | 100 | false | false | 13 | false | false | false | spring-projects | spring-framework | 15,620 |
bba38b886221704c82810da7bd2c87ece9c38ef3 | Juergen Hoeller | Juergen Hoeller | MockHttpServletRequestBuilder allows for specifying content type as String value
Issue: SPR-12405 | mockhttpservletrequestbuilder allows for specifying content type as string value | 80 | false | false | 9 | false | false | false | spring-projects | spring-framework | 15,621 |
78459504e029688193d50d85bc4baa20206dace2 | Sam Brannen | Sam Brannen | Clean up warnings in spring-jms | clean up warnings in spring-jms | 31 | false | false | 5 | false | false | false | spring-projects | spring-framework | 15,622 |
14f4d34fdba1614d2729da69b3d1eaea425c5be1 | Sam Brannen | Sam Brannen | Clean up warnings in spring-websocket | clean up warnings in spring-websocket | 37 | false | false | 5 | false | false | false | spring-projects | spring-framework | 15,623 |
a9c47df0c142f84cfafc2d7ab3dde4799b3889a4 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 15,624 |
d1288fdb7c47c2f60cf4027ac32e73638be375c9 | Juergen Hoeller | Juergen Hoeller | Upgrade to Hibernate 4.3.7 (and Netty 4.0.24) | upgrade to hibernate 4.3.7 (and netty 4.0.24) | 45 | false | false | 7 | false | false | false | spring-projects | spring-framework | 15,625 |
965bea7b3e4e1a0af44acb206e71c63ca37183a6 | Juergen Hoeller | Juergen Hoeller | DefaultListableBeanFactory efficiently accesses current bean names and exposes them via getBeanNamesIterator()
Issue: SPR-12404 | defaultlistablebeanfactory efficiently accesses current bean names and exposes them via getbeannamesiterator() | 110 | false | false | 11 | false | false | false | spring-projects | spring-framework | 15,626 |
97ea43681b901befafb80fd63c1590a87055d5f4 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 15,627 |
e2518e0b7c40e4974d6d642bae7ff1e9ec6c800f | Juergen Hoeller | Juergen Hoeller | Reduced DefaultJCacheOperationSource's dependency from ApplicationContext to BeanFactory
Issue: SPR-12336 | reduced defaultjcacheoperationsource's dependency from applicationcontext to beanfactory | 88 | false | false | 7 | false | false | false | spring-projects | spring-framework | 15,628 |
0e36402bd29d602f5f253ae2adddfca60f3f37b8 | Juergen Hoeller | Juergen Hoeller | Revised retrieval of cache strategy beans
Issue: SPR-12336 | revised retrieval of cache strategy beans | 41 | false | false | 6 | false | false | false | spring-projects | spring-framework | 15,629 |
cfa3d358d5836bcfaad1f6ce9287ccf78ad7740f | Sebastien Deleuze | Sebastien Deleuze | Add an alwaysInclude property to TilesViewResolver
Issue: SPR-12374 | add an alwaysinclude property to tilesviewresolver | 50 | false | false | 6 | true | true | true | spring-projects | spring-framework | 15,630 |
01382b8ff0d5efe86d185fb3e8a07a23c6a195ed | Juergen Hoeller | Juergen Hoeller | BeanDefinitionValueResolver preserves original String array if possible and resolves nested String arrays as well
Issue: SPR-12391 | beandefinitionvalueresolver preserves original string array if possible and resolves nested string arrays as well | 113 | false | false | 14 | false | false | false | spring-projects | spring-framework | 15,631 |
65d163e6042c22ed412ed44f7c6fa4b6ea88d7b1 | Juergen Hoeller | Juergen Hoeller | Revised scheduling lifecycle integration
ScheduledAnnotationBeanPostProcessor uses getBean(Class) for TaskScheduler/ScheduledExecutorService retrieval, allowing for a scheduler bean to be flagged as primary, and for a TaskScheduler bean to override a ScheduledExecutorService bean.
ContextLifecycleScheduledTaskRegistr... | revised scheduling lifecycle integration | 40 | false | false | 4 | false | false | false | spring-projects | spring-framework | 15,632 |
7d2231541ba3629b9a51773fa4a3ddfc50485e29 | Juergen Hoeller | Juergen Hoeller | Unit tests for java.util.Optional with autowired collections on @Autowired fields/methods and @Bean method parameters
Issue: SPR-9132 | unit tests for java.util.optional with autowired collections on @autowired fields/methods and @bean method parameters | 117 | false | false | 14 | false | false | false | spring-projects | spring-framework | 15,633 |
bf5739c56b46553d2c376bc4c952880e9bccd987 | Juergen Hoeller | Juergen Hoeller | HibernateJpaSessionFactoryBean is compatible with Hibernate 4.3 as well now
Issue: SPR-12401 | hibernatejpasessionfactorybean is compatible with hibernate 4.3 as well now | 75 | false | false | 9 | false | false | false | spring-projects | spring-framework | 15,634 |
5aefcc802ef05abc51bbfbeb4a78b3032ff9eee3 | Stephane Nicoll | Stephane Nicoll | Prevent early bean initialization with @EnableCaching
Prior to this commmit, any configuration class holding a CacheManager
bean would be eagerly instantiated. This is because the
CacheConfiguration infrastructure requests all beans of type
CacheManager.
This commit defers the resolution of the CacheManager as late
a... | prevent early bean initialization with @enablecaching | 53 | false | false | 6 | false | true | false | spring-projects | spring-framework | 15,635 |
8e5c77dc1191432d8a9e0109beb4e9d3f925e8d2 | Stephane Nicoll | Stephane Nicoll | Explicit support of String[] value resolution
This commit adds an explicit support for String array for value
resolution. <util:properties> switches the 'locations' property to a
String array in 662d8aa and this broke expression evaluation.
Issue: SPR-12391 | explicit support of string[] value resolution | 45 | false | false | 6 | false | false | false | spring-projects | spring-framework | 15,636 |
2f039454107ad0ed67f31a38d7b11a4f9318a5b1 | Sam Brannen | Sam Brannen | Delete unused imports in spring-test | delete unused imports in spring-test | 36 | false | false | 5 | true | true | true | spring-projects | spring-framework | 15,637 |
7aff57548535cd428f17acb583d24ce455f62f2d | Juergen Hoeller | Juergen Hoeller | Reintroduced original SpringSessionSynchronization constructor and made SpringSession/FlushSynchronization public (for GORM)
Issue: SPR-12400 | reintroduced original springsessionsynchronization constructor and made springsession/flushsynchronization public (for gorm) | 124 | false | false | 10 | false | false | false | spring-projects | spring-framework | 15,638 |
5f160c17cda699572d6a57c723cb87c26598b378 | Juergen Hoeller | Juergen Hoeller | MBeanExporter logs lazy bean retrieval exceptions on the server at warn level
Issue: SPR-12399 | mbeanexporter logs lazy bean retrieval exceptions on the server at warn level | 77 | false | false | 12 | false | false | false | spring-projects | spring-framework | 15,639 |
db2601d6e25a427368500ffcb8d274319222ec92 | Juergen Hoeller | Juergen Hoeller | AbstractBeanFactory logs bean creation exception on FactoryBean type check at warn level
Issue: SPR-12397 | abstractbeanfactory logs bean creation exception on factorybean type check at warn level | 88 | false | false | 12 | false | false | false | spring-projects | spring-framework | 15,640 |
d8941ca098b14e53b7786a66fd268d3459791336 | Rossen Stoyanchev | Rossen Stoyanchev | Normalize 2+ '/' in path in UriComponentsBuilder
Issue: SPR-12398 | normalize 2+ '/' in path in uricomponentsbuilder | 48 | false | false | 7 | true | true | true | spring-projects | spring-framework | 15,641 |
e9f53c6ddf3ba6c7ef797ad2f2657054e5901511 | Juergen Hoeller | Juergen Hoeller | Polishing
Issue: SPR-12396 | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 15,642 |
a181b40e39df28f75b0024d70c2d5e7233801f5f | Juergen Hoeller | Juergen Hoeller | PersistenceAnnotationBeanPostProcessor correctly detects JPA 2.1 synchronization attribute
Issue: SPR-12396 | persistenceannotationbeanpostprocessor correctly detects jpa 2.1 synchronization attribute | 90 | false | false | 7 | false | false | false | spring-projects | spring-framework | 15,643 |
fc7e60678cf8e63037f4163c4d77013a2f088104 | Sam Brannen | Sam Brannen | Fix Javadoc in MockHttpServletRequestBuilder
Class-level Javadoc for MockHttpServletRequestBuilder now correctly
refers to MockMvcRequestBuilders instead of MockMvcBuilders.
Issue: SPR-12393 | fix javadoc in mockhttpservletrequestbuilder | 44 | false | false | 4 | true | true | true | spring-projects | spring-framework | 15,644 |
62620de3f1ae6e67b0632232b8997c55c7d52183 | Rossen Stoyanchev | Rossen Stoyanchev | Update log settings for spring-websocket tests | update log settings for spring-websocket tests | 46 | false | false | 6 | false | true | false | spring-projects | spring-framework | 15,645 |
1146d5ba1d63e1654ae3deb132dde6461621d941 | Juergen Hoeller | Juergen Hoeller | Polishing | polishing | 9 | false | false | 1 | false | false | false | spring-projects | spring-framework | 15,646 |
4927c9054f0bf906196c995862ad2c423b47a073 | Juergen Hoeller | Juergen Hoeller | Revised SingleConnectionFactory for individual proxies with ExceptionListener and start/stop state
Issue: SPR-10397 | revised singleconnectionfactory for individual proxies with exceptionlistener and start/stop state | 98 | false | false | 10 | false | false | false | spring-projects | spring-framework | 15,647 |
38ef6dec50b124a8cb39a024a7fa2d29442cbe33 | Rossen Stoyanchev | Rossen Stoyanchev | Fix test issue with Set iteration order | fix test issue with set iteration order | 39 | false | false | 7 | false | true | false | spring-projects | spring-framework | 15,648 |
c7a93a80d4866dacafa9bb522062fbf9ef75ddb2 | Juergen Hoeller | Juergen Hoeller | Configuration class parsing reuses metadata from AnnotatedBeanDefinition as far as possible
Issue: SPR-12394 | configuration class parsing reuses metadata from annotatedbeandefinition as far as possible | 91 | false | false | 11 | false | false | false | spring-projects | spring-framework | 15,649 |
725ad0df50aec9f193f35f8a08244575214c8577 | Juergen Hoeller | Juergen Hoeller | SimpleMetadataReaderFactory is capable of resolving inner class names with dot syntax now (analogous to ClassUtils.forName)
Issue: SPR-12390 | simplemetadatareaderfactory is capable of resolving inner class names with dot syntax now (analogous to classutils.forname) | 123 | false | false | 15 | false | false | false | spring-projects | spring-framework | 15,650 |
807864fa9a2567127c763c40ce2a68ae14f3aca0 | Juergen Hoeller | Juergen Hoeller | Latest dependency updates (Hibernate Validator 5.1.3, Undertow 1.0.17, SnakeYAML 1.14) | latest dependency updates (hibernate validator 5.1.3, undertow 1.0.17, snakeyaml 1.14) | 86 | false | false | 10 | false | false | false | spring-projects | spring-framework | 15,651 |
ffc4e032934334686a52258c376b0a11092320c1 | Juergen Hoeller | Juergen Hoeller | Removed outdated TimerTaskExecutor reference
Issue: SPR-12389 | removed outdated timertaskexecutor reference | 44 | false | false | 4 | false | false | false | spring-projects | spring-framework | 15,652 |
8f21c855119cc240c732d9c2c4c4e5001732d10b | Rossen Stoyanchev | Rossen Stoyanchev | Explicitly close Spring context in WS integration test | explicitly close spring context in ws integration test | 54 | false | false | 8 | false | false | false | spring-projects | spring-framework | 15,653 |
8c727be4e1089f9e8dcdae9a201289c98c5762f1 | Rossen Stoyanchev | Rossen Stoyanchev | Close Spring context in SockJS integration test setup | close spring context in sockjs integration test setup | 53 | false | false | 8 | false | false | false | spring-projects | spring-framework | 15,654 |
70e6e3bb39c9db1a85a77411707fb560292b7b3e | Rossen Stoyanchev | Rossen Stoyanchev | Fix condition check in SockJsClient lifecycle method | fix condition check in sockjsclient lifecycle method | 52 | false | false | 7 | true | false | false | spring-projects | spring-framework | 15,655 |
b70c5d1ff14df57f292c08b6ad8843cbc4e9ef7f | Juergen Hoeller | Juergen Hoeller | Normalized AnnotationAttributesReadingVisitor class layout and improved diagnostics through delegating to AnnotationUtils
Issue: SPR-12387 | normalized annotationattributesreadingvisitor class layout and improved diagnostics through delegating to annotationutils | 121 | false | false | 11 | false | false | false | spring-projects | spring-framework | 15,656 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.