Absrtact: Original Creation Place: www.bysocket.com Mason bysocket Hope reprint, keep abstract, thank you!
Fast-framework
Lightweight Java WEB Framework –https://github.com/jeffli1993/fast-framework
- Based on the JDK 8 specification
- Based on the Servlet 3.0 specification
- 0 configuration
- The REST service interface is based on JSON transport
- Currently offers MVC ... Solution Solutions
I. Author and learning Paradise
SOURCE Address: My github address
Li Qiangqiang is also called Mason.
QQ Group: The beauty of programming 365234583 Join now
Ii. Quick Start 1. Required environment
- Git Environment Setup
- Maven Environment Setup
2. Download Fast-framework project and sample case
git clone https://github.com/JeffLi1993/fast-framework.git
3. Maven Compiling sample case
cd fast-framework // cd 到工程根目录mvn clean install // 编译工程
4. Start the sample case
cd fast-sample // cd 到 sample 案例工程根目录mvn jetty:run // 启动 sample 工程
The Console appears with the following result, indicating that the server started successfully:
...[INFO] Started [email protected]{HTTP/1.1}{0.0.0.0:8080}[INFO] Started @5133ms[INFO] Started Jetty Server[INFO] Starting scanner at interval of 10 seconds.
5. Visit sample
Open in Browser:
http://localhost:8080/hello?name=BYSocket
will get the following result:
If the above article or link is helpful to you, don't forget to comment at the end of the article AH ~ You can also click on the right side of the page "share" hover button oh, let more people read this article.
fast-framework– Java WEB MVC Framework implemented based on JDK 8