3 个仓库
Mapping HTTP endpoints to handler methods using code annotations.
Distinct from Annotation-Driven Mappings: None of the candidates cover general web request routing via annotations; they focus on DB mappings or UI event handlers.
Explore 3 awesome GitHub repositories matching web development · Annotation-Driven Request Mappings. Refine with filters or upvote what's useful.
该项目是 Spring MVC 框架的展示应用程序和参考实现。它演示了如何使用模型-视图-控制器(MVC)架构模式通过分离业务逻辑与用户界面来构建 Web 应用程序。 该应用程序提供了 HTTP 请求处理的示例,包括捕获请求数据、处理文件上传以及生成格式化的 HTTP 响应。它实现了将请求映射到处理程序方法并以 JSON 和 XML 等格式返回数据的 REST API 端点。 该项目涵盖了核心 Web 开发功能,包括请求路由、数据验证和异常映射。它演示了如何使用拦截器处理横切逻辑,以及使用消息转换器进行数据序列化。
Implements annotation-based mapping to link specific URL endpoints to their processing methods.
ForestBlog 是一个基于 Java 的内容管理系统和博客引擎,用于创建和组织 Web 文章。它作为一个数字发布平台,将文章和用户账户数据存储在关系数据库中。 该应用使用 Spring、Spring MVC 和 MyBatis 技术栈构建,以处理结构化数据持久化和请求路由。它集成了一个用于管理用户资料和账户注册的集中式管理界面。 该系统涵盖了内容和媒体管理,包括发布博客文章和通过本地服务器存储处理文件上传的能力。身份通过基于会话的用户身份验证进行管理,以保护管理路由。
Maps incoming HTTP requests to specific Java handler methods using code annotations.
AndServer is a Java library for hosting a lightweight HTTP server and API endpoints directly within an Android application process. It functions as an annotation-based web framework that maps network requests to specific application methods to decouple business logic from network handling. The project distinguishes itself as a mobile network gateway capable of routing incoming traffic and proxying data on an Android device. It includes an embedded static file server for delivering HTML files and web assets from the device to other clients over HTTP. The framework provides a middleware engine
Maps HTTP endpoints to handler methods using code annotations to decouple business logic from network handling.