Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 项目配置。
- Host: GitHub
- URL: https://github.com/xuxiaowei-com-cn/spring-mvc
- Owner: xuxiaowei-com-cn
- License: apache-2.0
- Created: 2019-07-10T04:59:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-16T15:14:38.000Z (almost 2 years ago)
- Last Synced: 2023-03-04T05:34:29.056Z (over 1 year ago)
- Language: Java
- Size: 2.76 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```