# jweb-common
**Repository Path**: maoanping/jweb-common
## Basic Information
- **Project Name**: jweb-common
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2021-03-16
- **Last Updated**: 2021-05-11
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# jweb
Jweb Common Project is one suite of java classes for simplify java web development, it contains below features:
- my customerized jstl functions,
-- jweb collection functions, expose java.util.Collection to EL, such as ${list:size(list)}
-- jweb datetime, expose java.util.Date and Calendar to EL, such as ${date:now()}
-- jweb format, expose java.util.Format to EL, such as ${format:parse(str,'yyyy-MM-dd')}
-- jweb map, expose java.util.Map to EL, such as ${map:get(map, 'key')}
-- jweb string, expose String functions to EL, such as ${string.substring(str, 0, 10)}
- Mybatis Interceptor extension to make mybatis generator generated classes can do auto paging, and also some dialects
- one spring security User/Role/Permission beans for standard role model
<dependency>
<groupId>com.github.alexmao86</groupId>
<artifactId>jweb-common</artifactId>
<version>1.1.1</version>
</dependency>
# Release Note
- 1.1 added daysBetween daysToNow JSTL function tag
- 1.1.1 daysToNow change, use new Date() - date, so it is opposite number of version 1.1's daysToNow