Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xuxiaowei-com-cn/spring-mvc

Spring MVC 项目配置。
https://github.com/xuxiaowei-com-cn/spring-mvc

Last synced: 5 days ago
JSON representation

Spring MVC 项目配置。

Awesome Lists containing this project

README

        

# Spring-MVC
Spring MVC 项目配置。

## [Spring Framework Documentation](https://docs.spring.io/spring/docs/current/spring-framework-reference/index.html)

## [Spring Web Services Reference Documentation](https://docs.spring.io/spring-ws/docs/current/reference/index.html)

## [Spring Faces](https://docs.spring.io/autorepo/docs/webflow/current/reference/html/spring-faces.html)

## [Spring-MVC-Simple-java](https://github.com/xuxiaowei-com-cn/Spring-MVC/tree/Spring-SpringMVC/Spring-MVC-Simple-java)
- Spring MVC 简单配置 Java 版。

## [Spring-MVC-Simple-xml](https://github.com/xuxiaowei-com-cn/Spring-MVC/tree/Spring-SpringMVC/Spring-MVC-Simple-xml)
- Spring MVC 简单配置 xml 版。

## 项目配置

- 集成 Spring MVC 配置
- 模板引擎
- Thymeleaf
- FreeMarker
- JSP
- JSF(Sun)
- Spring Security
- Thymeleaf 集成 Security
- FreeMarker 集成 Security
- JSP 集成 Security
- JSF(Sun) 集成 Security
- Hikari 连接池
- MyBatis
- Redis
- Session 共享
- Redis 注解
- Redis 集群配置
- MySQL
- log4j2
- Slf4j
- 定时器
- 返回XML数据
- 根据 Accept 自动请求解析不同类型的数据
- 根据 URL 后缀名自动请求解析不同类型的数据

## 数据库

- MySQL 5.7.24

- Windows 设置
~~~
[mysql]
default-character-set=utf8mb4

[mysqld]
character-set-server=utf8mb4
~~~
- Linux 设置
~~~
[mysql]
default-character-set=utf8mb4

[mysqld]
character-set-server=utf8mb4
collation_server=utf8mb4_bin
~~~

- 字符集
- utf8mb4
- 排序规则
- utf8mb4_bin

- 环境
- VM options
```
-XX:PermSize=128m
```