16 changed files with 51 additions and 6 deletions
@ -0,0 +1,4 @@ |
|||||||
|
/** |
||||||
|
* Common utility classes behind the <em>Spring Expression Language</em>. |
||||||
|
*/ |
||||||
|
package org.springframework.expression.common; |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
/** |
||||||
|
* Core abstractions behind the <em>Spring Expression Language</em>. |
||||||
|
*/ |
||||||
|
package org.springframework.expression; |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
/** |
||||||
|
* SpEL's abstract syntax tree. |
||||||
|
*/ |
||||||
|
package org.springframework.expression.spel.ast; |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
/** |
||||||
|
* SpEL's central implementation package. |
||||||
|
*/ |
||||||
|
package org.springframework.expression.spel; |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
/** |
||||||
|
* SpEL's standard parser implementation. |
||||||
|
*/ |
||||||
|
package org.springframework.expression.spel.standard; |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
/** |
||||||
|
* SpEL's default implementations for various core abstractions. |
||||||
|
*/ |
||||||
|
package org.springframework.expression.spel.support; |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
/** |
||||||
|
* Support for context caching within the <em>Spring TestContext Framework</em>. |
||||||
|
*/ |
||||||
|
package org.springframework.test.context.cache; |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
/** |
||||||
|
* Spring's support for listening to transaction events. |
||||||
|
*/ |
||||||
|
package org.springframework.transaction.event; |
||||||
@ -1,4 +1,4 @@ |
|||||||
/** |
/** |
||||||
* Provides an HttpMessageConverter implementations for handling JSON. |
* Provides HttpMessageConverter implementations for handling JSON. |
||||||
*/ |
*/ |
||||||
package org.springframework.http.converter.json; |
package org.springframework.http.converter.json; |
||||||
|
|||||||
@ -0,0 +1,5 @@ |
|||||||
|
/** |
||||||
|
* Provides an HttpMessageConverter implementation for handling |
||||||
|
* <a href="https://developers.google.com/protocol-buffers/">Google Protocol Buffers</a>. |
||||||
|
*/ |
||||||
|
package org.springframework.http.converter.protobuf; |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
/** |
||||||
|
* Provides a comprehensive HttpMessageConverter variant for form handling. |
||||||
|
*/ |
||||||
|
package org.springframework.http.converter.support; |
||||||
@ -1,4 +1,4 @@ |
|||||||
/** |
/** |
||||||
* Provides an HttpMessageConverter implementations for handling XML. |
* Provides HttpMessageConverter implementations for handling XML. |
||||||
*/ |
*/ |
||||||
package org.springframework.http.converter.xml; |
package org.springframework.http.converter.xml; |
||||||
|
|||||||
Loading…
Reference in new issue