Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alibaba/spring-velocity-support
An support project of legacy velocity based on Spring Framework
https://github.com/alibaba/spring-velocity-support
java spring spring-framework template-engine velocity
Last synced: about 1 month ago
JSON representation
An support project of legacy velocity based on Spring Framework
- Host: GitHub
- URL: https://github.com/alibaba/spring-velocity-support
- Owner: alibaba
- License: apache-2.0
- Created: 2018-06-13T06:43:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T13:38:24.000Z (over 1 year ago)
- Last Synced: 2024-09-29T00:05:09.098Z (about 2 months ago)
- Topics: java, spring, spring-framework, template-engine, velocity
- Size: 56.6 KB
- Stars: 25
- Watchers: 10
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spring-velocity-support
An support project of legacy velocity based on Spring Framework, it is a base project of
[Alibaba velocity-spring-boot-project](https://github.com/alibaba/velocity-spring-boot-project), and most code is
forked from Spring Framework official implementation.## Released version
### Non-Web Application
````xml
......
org.springframework
spring-context-support
${spring.framework.version}
com.alibaba.spring
spring-context-velocity
1.4.3.25.RELEASE
......
````
### Web Application
````xml
......
org.springframework
spring-webmvc
${spring.framework.version}
com.alibaba.spring
spring-webmvc-velocity
1.4.3.25.RELEASE
......
````
If your project failed to resolve the dependency, try to add the following repository:
```xml
sonatype-nexus
https://oss.sonatype.org/content/repositories/releases
true
```## Modules
### Forked Modules
| Modules | From `org.springframework` |
| ------------------------------- | ----------------------------------------------------------- |
| [`spring-context-velocity`](spring-context-velocity) | `spring-context-support:4.3.25.RELEASE` |
| [`spring-webmvc-velocity`](spring-webmvc-velocity) | `spring-webmvc:4.3.25.RELEASE` |