All Projects → alibaba → Spring Velocity Support

alibaba / Spring Velocity Support

Licence: apache-2.0
An support project of legacy velocity based on Spring Framework

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Spring Velocity Support

Rqueue
Rqueue aka Redis Queue [Task Queue, Message Broker] for Spring framework
Stars: ✭ 76 (+245.45%)
Mutual labels:  spring, spring-framework
Spring Mvc Tutorial
Spring MVC 5 Tutorial - Guide to spring mvc framework
Stars: ✭ 121 (+450%)
Mutual labels:  spring, spring-framework
Spring Framework 4.2.0
spring源码学习附注释(Version 4.2.0),the second debug.
Stars: ✭ 87 (+295.45%)
Mutual labels:  spring, spring-framework
Curso Sistemas Web Com Spring Javascript Bootstrap
Stars: ✭ 74 (+236.36%)
Mutual labels:  spring, spring-framework
Org.openwms
Open Warehouse Management System
Stars: ✭ 258 (+1072.73%)
Mutual labels:  spring, spring-framework
Spring Framework
Spring Framework
Stars: ✭ 45,396 (+206245.45%)
Mutual labels:  spring, spring-framework
Spring Context Support
An internal support project for spring-context in Alibaba
Stars: ✭ 109 (+395.45%)
Mutual labels:  spring, spring-framework
Learning Spring
Spring框架讲解
Stars: ✭ 132 (+500%)
Mutual labels:  spring, spring-framework
Awesome Spring
A curated list of awesome books, tutorials, courses, and resources for the Spring framework ecosystem.
Stars: ✭ 186 (+745.45%)
Mutual labels:  spring, spring-framework
My Spring Learning
My Spring framework learning
Stars: ✭ 165 (+650%)
Mutual labels:  spring, spring-framework
Cerberus
A demonstration of a completely stateless and RESTful token-based authorization system using JSON Web Tokens (JWT) and Spring Security.
Stars: ✭ 482 (+2090.91%)
Mutual labels:  spring, spring-framework
Thymeleaf Spring
Thymeleaf integration module for Spring
Stars: ✭ 349 (+1486.36%)
Mutual labels:  spring, template-engine
Spring Security
Spring Security
Stars: ✭ 6,434 (+29145.45%)
Mutual labels:  spring, spring-framework
Dot Dom
.dom is a tiny (512 byte) template engine that uses virtual DOM and some of react principles
Stars: ✭ 757 (+3340.91%)
Mutual labels:  template-engine
Bars
Bars is a lightweight high performance HTML aware templating engine. Bars emits DOM rather than DOM-strings, this means the DOM state is preserved even if data updates happen.
Stars: ✭ 5 (-77.27%)
Mutual labels:  template-engine
Jet
Jet template engine
Stars: ✭ 756 (+3336.36%)
Mutual labels:  template-engine
Javaquarkbbs
基于Spring Boot实现的一个简易的Java社区
Stars: ✭ 755 (+3331.82%)
Mutual labels:  spring
Hamlit
High Performance Haml Implementation
Stars: ✭ 898 (+3981.82%)
Mutual labels:  template-engine
Medusa
🐈Medusa是一个红队武器库平台,目前包括扫描功能(200+个漏洞)、XSS平台、协同平台、CVE监控等功能,持续开发中 http://medusa.ascotbe.com
Stars: ✭ 796 (+3518.18%)
Mutual labels:  spring
Mica
Spring Cloud 微服务开发核心工具集。工具类、验证码、http、redis、ip2region、xss 等,开箱即用。 🔝 🔝 记得右上角点个star 关注更新!
Stars: ✭ 749 (+3304.55%)
Mutual labels:  spring

spring-velocity-support

An support project of legacy velocity based on Spring Framework, it is a base project of Alibaba velocity-spring-boot-project, and most code is forked from Spring Framework official implementation.

Released version

Non-Web Application

<dependencies>

    ......

     <!-- Spring Framework -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context-support</artifactId>
        <version>${spring.framework.version}</version>
    </dependency>

    <!-- Spring Context Velocity -->
    <dependency>
        <groupId>com.alibaba.spring</groupId>
        <artifactId>spring-context-velocity</artifactId>
        <version>1.4.3.25.RELEASE</version>
    </dependency>

    ......

</dependencies>

Web Application

<dependencies>

    ......

     <!-- Spring Web MVC -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>${spring.framework.version}</version>
    </dependency>

    <!-- Spring WebMVC Velocity -->
    <dependency>
        <groupId>com.alibaba.spring</groupId>
        <artifactId>spring-webmvc-velocity</artifactId>
        <version>1.4.3.25.RELEASE</version>
    </dependency>

    ......

</dependencies>

If your project failed to resolve the dependency, try to add the following repository:

    <repositories>
        <repository>
            <id>sonatype-nexus</id>
            <url>https://oss.sonatype.org/content/repositories/releases</url>
            <releases>
                <enabled>true</enabled>
            </releases>
        </repository>
    </repositories>

Modules

Forked Modules

Modules From org.springframework
spring-context-velocity spring-context-support:4.3.25.RELEASE
spring-webmvc-velocity spring-webmvc:4.3.25.RELEASE
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].