https://github.com/hocgin/springboot-cms
Spring Security / Mongodb / Thymeleaf / Spring Boot / Quartz / WebSocket
https://github.com/hocgin/springboot-cms
mongodb quartz spring-boot spring-security thymeleaf websocket
Last synced: about 1 year ago
JSON representation
Spring Security / Mongodb / Thymeleaf / Spring Boot / Quartz / WebSocket
- Host: GitHub
- URL: https://github.com/hocgin/springboot-cms
- Owner: hocgin
- Created: 2017-10-31T23:56:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-02-12T14:30:02.000Z (over 7 years ago)
- Last Synced: 2025-03-25T10:11:47.268Z (about 1 year ago)
- Topics: mongodb, quartz, spring-boot, spring-security, thymeleaf, websocket
- Language: JavaScript
- Homepage:
- Size: 18.5 MB
- Stars: 16
- Watchers: 3
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README-Beta.md
- Changelog: change-log.md
Awesome Lists containing this project
README
## 关于 html 命名约定
1. `*-view.html` 即`Controller`中对应一个
```
public final String BASE_TEMPLATES_PATH = "path/%s";
@GetMapping('*-view.html')
public String v*(){
return String.format(BASE_TEMPLATES_PATH, "*-view")
}
```
2. `*-modal.html` 为一个弹窗。
3. `index.html` 为主界面
4. `content.html` 为`#pjax-container`的内容
## 关于服务器返回数据 `in.hocg.web.modules.base.body.Results`
- `200` 表示成功
- `500` 表示服务器错误
- `1000` 数据校验失败
- `1100` 数据库操作失败
## JS 相关 class 或 id 使用 驼峰式命名# Spring-Boot-ing
# JWTSpringSecurity