# Feat
**Repository Path**: smartboot/feat
## Basic Information
- **Project Name**: Feat
- **Description**: 让 Java Web 开发更简洁、更高效、更有趣。
- **Primary Language**: Java
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: https://smartboot.tech/feat/
- **GVP Project**: No
## Statistics
- **Stars**: 325
- **Forks**: 23
- **Created**: 2025-01-14
- **Last Updated**: 2026-08-24
## Categories & Tags
**Categories**: webframework
**Tags**: AI, Web, Java, Http, HttpClient
## README
#
Feat Framework [](https://www.apache.org/licenses/LICENSE-2.0) [](https://deepwiki.com/smartboot/feat)
Somewhat like Vert.x, and somewhat like Spring Boot, Feat is a Java web service development framework.
> ⭐ Star Feat on GitHub and be instantly notified of new releases.

### 🚀 Enterprise Value of Feat
| Advantage | Description |
|-----------|-------------|
| ⚡ High Performance | Several times faster than traditional frameworks, significantly reducing server costs |
| ⏱️ Low Latency | Millisecond-level response, enhancing user experience |
| 📦 Easy to Use | Simple API design lowers the learning curve |
| 🔐 High Reliability | Stable operation reduces operational pressure |
---
### 📦 Third-party Package Dependencies
The main third-party package dependencies for each module in the Feat framework are as follows:
| Module |
Dependency |
Type |
Description |
| Feat Core |
smart-socket |
Runtime |
A Java AIO-based network communication framework |
| fastjson2 |
Runtime |
Alibaba's JSON processing library |
| Feat Cloud |
mybatis |
Compile-time |
An excellent persistence layer framework |
| snakeyaml |
Compile-time |
YAML configuration file parsing library |
| Feat AI |
- |
- |
- |
All dependencies use the latest stable versions to ensure optimal security and performance.
---
## Quick Start
### Hello World (Feat Cloud)
Create a simple annotation-based Web application with Feat Cloud:
```java
import tech.smartboot.feat.cloud.FeatCloud;
import tech.smartboot.feat.cloud.annotation.Controller;
import tech.smartboot.feat.cloud.annotation.RequestMapping;
@Controller
public class HelloWorld {
@RequestMapping("/hello")
public String hello() {
return "Hello, World!";
}
public static void main(String[] args) {
FeatCloud.cloudServer().listen();
}
}
```
**Maven Dependencies:**
```xml
tech.smartboot.feat
feat-cloud
2.4.1
tech.smartboot.feat
feat-cloud-starter
2.4.1
provided
```
---
## Performance Comparison
Compared to other mainstream Java frameworks, Feat excels in the following areas:
| Metric | Feat | Spring Boot | Vert.x |
|--------|------|-------------|--------|
| Startup Time | <100ms | ~700ms | ~500ms |
| Memory Usage | Low | High | Medium |
| Requests per Second | High | Medium | High |
| Response Latency | Extremely Low | Medium | Low |
---
## Documentation & Community
### 📚 Learning Resources
- **[Official Documentation](https://smartboot.tech/feat)**: Detailed usage guides and API references
- **[Sample Projects](https://gitee.com/smartboot/feat/tree/master/feat-test)**: Practical examples across various scenarios
- **[Performance Test Reports](https://smartboot.tech/feat/appendix/benchmark/)**: Understand Feat's performance advantages
### 💬 Getting Support
- **[GitHub Issues](https://github.com/smartboot/feat/issues)**: Report issues or suggest new features
- **[Gitee Issues](https://gitee.com/smartboot/feat/issues)**: Domestic user feedback channel
- **[Enterprise Licensing Solutions](https://smartboot.tech/feat/auth/)**: Empowering efficient development and enterprise growth
### 🤝 Contributing
We welcome contributions in all forms:
- **Report Issues**: Help us identify and fix bugs
- **Improve Documentation**: Make documentation clearer and more complete
- **Contribute Code**: Implement new features or fix known issues
- **Share Experience**: Share your experiences and best practices using Feat within the community
Please read our [Contribution Guide](CONTRIBUTING.md) before contributing.
---
## License
Feat is open source under the [Apache License 2.0](LICENSE).
---
Feat - A Supersonic Java Framework for the Cloud Native Era
High Performance • Low Resource Consumption • Developer Friendly