https://github.com/chucheng92/mariosample
基于Java实现的简单MVC框架MarioMVC的使用方法
https://github.com/chucheng92/mariosample
java-mvc
Last synced: 11 months ago
JSON representation
基于Java实现的简单MVC框架MarioMVC的使用方法
- Host: GitHub
- URL: https://github.com/chucheng92/mariosample
- Owner: chucheng92
- Created: 2016-02-20T09:17:41.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-17T03:24:46.000Z (almost 8 years ago)
- Last Synced: 2025-02-12T16:50:01.162Z (about 1 year ago)
- Topics: java-mvc
- Language: Java
- Homepage: https://github.com/Lemonjing/MarioMVC
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MarioSample
这是 [如何设计一个Web框架](https://github.com/Lemonjing/MarioMVC) 源码的一个演示例子。
## 如何运行
使用你的 IDE 导入项目,放在Tomcat中或者直接使用Maven Jetty插件启动均可 :)
```sh
# 展示JSP视图
http://localhost:9000/
# 控制器输出hello
http://localhost:9000/hello
# 展示html视图
http://localhost:9000/html
# CRUD
http://localhost:9000/users
```