Sam Brannen
bfbd7def33
Documented recent changes to the TestContext framework in the changelog
14 years ago
Sam Brannen
a298c2dde8
[SPR-8386][SPR-8387] Redesign of DelegatingSmartContextLoader and the SmartContextLoader SPI:
...
- Removed generatesDefaults() and supports() from the SmartContextLoader SPI and modified the DelegatingSmartContextLoader algorithm accordingly.
- DelegatingSmartContextLoader no longer operates on a list of candidate loaders but rather on explicit instances of GenericXmlContextLoader and AnnotationConfigContextLoader.
- Updated Javadoc regarding DelegatingSmartContextLoader as the new default loader.
- Updated and polished Javadoc regarding changes in 3.1.
- Now enforcing @ContextConfiguration's restriction on declaring locations or classes but not both.
14 years ago
Sam Brannen
2d6340af74
Deleting unnecessary TODOs and suppressing warnings.
14 years ago
Juergen Hoeller
03c267e93a
added "connectTimeout" and "readTimeout" properties to SimpleClientHttpRequestFactory (SPR-8614)
14 years ago
Rossen Stoyanchev
45efe6184c
SPR-6464 FlashMap polish
14 years ago
Sam Brannen
367dcf13ce
Suppressing deprecation warnings in MockPageContext.
14 years ago
Juergen Hoeller
49e61d2680
overridden @PersistenceContext annotations on subclass methods are being processed correctly (SPR-8594)
14 years ago
Juergen Hoeller
b9ebdd28fb
polishing
14 years ago
Rossen Stoyanchev
c97257b16f
SPR-6464 Fix minor issue
14 years ago
Rossen Stoyanchev
6f1818a604
SPR-6464 Use the redirect URL and its request parameters (if any), instead of a synthetic key, to match a FlashMap instance to its intended recepient request. This should help to prevent conflicts in most cases transparently. Only if necessary a controller can add extra request parameters to distinguish the request even more uniquely.
14 years ago
Chris Beams
3ead3cf859
Improve wording of scoped-proxy example in ref doc
...
Issue: SPR-8591
14 years ago
David Syer
47f45ff743
SPR-8585: add generic composite filter
14 years ago
David Syer
296099f222
SPR-8592: add SpEL support in <jdbc:/>
14 years ago
David Syer
0c0ab97a84
Switch servlet dependency to a public one
14 years ago
Rossen Stoyanchev
1df0cd9f20
SPR-6464 Drop @FlashAttributes , add ResponseContext, ViewResponse, and RedirectResponse types for annotated controllers to use to prepare a redirect response with flash attributes; Add FlashMap and FlashMapManager and update DispatcherServlet to discover and invoke the FlashMapManager.
14 years ago
Chris Beams
11597c906d
Fix typo in reference documentation
...
Issue: SPR-8579
14 years ago
Juergen Hoeller
b6e82048fc
removed GenericConversionService logging in order to avoid toString side effects (and to avoid isTraceEnabled overhead; SPR-8297)
14 years ago
Chris Beams
6404440cbf
Fix typo in SmartLifecycle Javadoc
...
Issue: SPR-8570
14 years ago
Rossen Stoyanchev
fc4ea16ba0
Replace RequestBodyNotValidException and RequestPartNotValidException with MethodArgumentNotValidException and add MethodParameter information to the exception message.
14 years ago
Rossen Stoyanchev
3c7e44ada4
SPR-8536 When two methods match a request for any content type (i.e. Accept=*/* or no Accept header), choose the one that doesn't define any 'Accept' media types by default. This addresses an important use case where methods serving browsers typically don't specify Accept media types.
14 years ago
Juergen Hoeller
8f23c66512
SpringBeanAutowiringSupport is able to process @Value annotations on any given target instance (SPR-8574)
14 years ago
Chris Beams
272f145132
Clarify Lifecycle#stop documentation
...
Issue: SPR-8570
14 years ago
Juergen Hoeller
8745024969
added getContentAsByteArray() and getContentAsString() methods (SPR-8575); actually implemented forward, include and handlePageException methods
14 years ago
Juergen Hoeller
df1f3d40bd
polishing
14 years ago
Juergen Hoeller
0a48936f4f
ContentNegotiatingViewResolver properly handles invalid accept headers (SPR-7712)
14 years ago
Rossen Stoyanchev
3fb753bc0c
SPR-8448 Use URI template vars rather than path vars in RedirectView
14 years ago
Rossen Stoyanchev
98ad8633bd
SPR-8524 Add flag to AbstractCachingViewResolver to suppress subsequent resolution of unresolved view names.
14 years ago
Chris Beams
9f4a46e24c
Auto-unwrap SessionFactoryBuilder-created proxies
...
SessionFactory proxies created by (Annotation)SessionFactoryBuilder now
implement InfrastructureProxy to ensure they are automatically unwrapped
for transaction resource management purposes.
Issue: SPR-8492
14 years ago
Chris Beams
35d2ab3bf9
Document Lifecycle#stop concurrency semantics
...
Issue: SPR-8570
14 years ago
Juergen Hoeller
fa7f13016e
multipart handling etc
14 years ago
Juergen Hoeller
5521f86f4a
removed unused Servlet dependency
14 years ago
Juergen Hoeller
39616d4a25
polishing
14 years ago
Juergen Hoeller
c864908779
Spring JSP tags do not use their own expression support on Servlet 3.0 containers by default; added support for web.xml context-param "springJspExpressionSupport" (explicit "true"/"false")
14 years ago
Juergen Hoeller
bbcf358a9d
jdbc:script's "separator" and "execution" attributes work nested with embedded-database as well; added "encoding" attribute to jdbc:script element; general revision of DatabasePopulator configuration and execution code
14 years ago
Juergen Hoeller
1baf2a3981
polishing
14 years ago
Chris Beams
226256e264
Respect <description> within <entry> per beans XSD
...
Prior to this change, a parsing exception would be thrown if a
<description> element was placed within a <map><entry/></map>
element. The beans XSD has always permitted this arrangement,
but BeanDefinitionParserDelegate did not respect it. The latter now
simply ignores any <description> element, rather than failing.
Issue: SPR-8563
14 years ago
Juergen Hoeller
f432f3043f
DefaultListableBeanFactory allows for init methods to register further bean definitions (again; SPR-7757)
14 years ago
Juergen Hoeller
fad865fbad
polishing
14 years ago
Juergen Hoeller
4385367f2d
optimized getMethodResolver implementation to actually benefit from ConcurrentHashMap
14 years ago
Juergen Hoeller
e63e6cdbde
polishing
14 years ago
Juergen Hoeller
19c2672dc3
polishing
14 years ago
Rossen Stoyanchev
f4adf227be
SPR-6464 Add @FlashAttributes annotation and FlashStatus method argument
14 years ago
Juergen Hoeller
2c504012ad
HtmlUtils properly escapes single quotes as well
14 years ago
Juergen Hoeller
38837eddfd
HtmlUtils properly escapes single quotes as well
14 years ago
Rossen Stoyanchev
9347ac358c
SPR-8540 Minor Freemarker import related documentation fix
14 years ago
Chris Beams
b85440f2b6
Deprecate AbstractSingletonProxyFactoryBean
14 years ago
Chris Beams
3c2e48738a
Remove CacheProxyFactoryBean
14 years ago
Chris Beams
2b371a7c9a
Deprecate TransactionProxyFactoryBean
14 years ago
Chris Beams
c85ebd9a5a
Polish AnnotationUtils Javadoc
14 years ago
Rossen Stoyanchev
f4b7cfea38
SPR-8483 Update reference documentation with multipart request-related changes: @RequestPart , Servlet 3.0 multipart reuqests, javax.servlet.http.Part method argument types.
14 years ago