惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
大猫的无限游戏
大猫的无限游戏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Proofpoint News Feed
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
量子位
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
U
Unit 42
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
博客园 - Franky
博客园 - 聂微东

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I got tired of heavyweight frameworks, so I built my own ...
Mustafa Bing · 2026-04-25 · via DEV Community

I got tired of heavyweight frameworks, so I built my own web server in Java

Most Java web projects start with Spring Boot. You add the dependency, and suddenly you have an entire ecosystem loaded into memory before your first route is even registered. For a lot of use cases that's totally fine. But I wanted something I could drop a JAR into a folder, double-click, and have a running web server in under three seconds — no config ceremony, no classpath drama.

So I built Aurelius.

What is it?

Aurelius is a lightweight, minimalist Java web server designed for developers who want to get a site or a small API running without pulling in a full framework. It runs on Java 8+, ships as a single executable JAR (or .exe on Windows), and is built on top of Netty for the networking layer.

The core idea: drop the JAR in a folder, launch it, put your HTML files in the right place, and you have a running server. That's it.

Project structure

When Aurelius starts, it expects this layout:

my-project/
├── aurelius.jar
├── settings.yml
├── app/
│   └── main.html        ← served at /
│   └── about/
│       └── main.html    ← served at /about
├── containers/
│   └── button.html
│   └── section.html
└── public/
    └── logo.png
    └── data.json

Enter fullscreen mode Exit fullscreen mode

Every folder under app/ becomes a route. main.html in a folder is the index for that route. Files under public/ are served statically and accessible from any HTML file via /public/filename.

The container system

This is the part I'm most proud of. Instead of reaching for a templating engine, I built a simple component system directly into the server.

You define a reusable HTML fragment in the containers/ folder:

<!-- containers/button.html -->
<button class="btn btn-primary">{text}</button>

Enter fullscreen mode Exit fullscreen mode

Then you use it anywhere in your pages with a custom tag:

<container.button text="Click me"></container.button>

Enter fullscreen mode Exit fullscreen mode

Aurelius processes the tag at serve time, injects the attribute values into the fragment, and sends the assembled HTML to the client. No JavaScript required, no build step, no npm.

You can nest containers, pass multiple attributes, and compose entire page sections from reusable fragments. It's not React — it's intentionally much simpler — but for static-ish sites it removes a lot of repetition.

Placeholder system

For site-wide variables, Aurelius has a placeholders.yml file:

title: "My Site"
author: "Mustafa"
version: "1.2"

Enter fullscreen mode Exit fullscreen mode

Anywhere in your HTML you write %title% and Aurelius substitutes it at serve time:

<head>
  <title>%title% — Home</title>
</head>

Enter fullscreen mode Exit fullscreen mode

This is useful for things like site name, meta descriptions, or any string you'd otherwise duplicate across dozens of pages.

RESTful API support via addons

Aurelius isn't just for serving HTML. You can register REST endpoints programmatically through the addon system:

// GET /api/hello
AddonManager.registerRestFulService(
    new RestFulResponseStructure.Builder("hello")
        .setRestFulResponse((body, helper) -> {
            return "Hello, world! Path: " + Arrays.toString(helper.getPathData());
        })
        .setRequestType(RestFulRequestType.GET)
        .build()
);

Enter fullscreen mode Exit fullscreen mode

For structured request/response bodies, you implement the RestFulResponse<Output, Input> interface and Aurelius handles JSON deserialization automatically:

public class UserController implements RestFulResponse<UserDto, UserRequest> {

    @Override
    public UserDto response(UserRequest request, RestFulResponseHelper helper) {
        UserDto dto = new UserDto();
        dto.setUsername(request.getUsername());
        return dto;
    }

    @Override
    public UserRequest convert(String body) throws Exception {
        return (UserRequest) AddonManager.convertFromBodyJson(body, UserRequest.class);
    }
}

Enter fullscreen mode Exit fullscreen mode

Cookies are also supported through the helper:

CookieStructure cookie = new CookieStructure();
cookie.setCookieName("session");
cookie.setCookieValue(UUID.randomUUID().toString());
cookie.setFeatures(Arrays.asList(new CFMaxAge(3600), new CFHttpOnly()));
helper.sendCookie(cookie);

Enter fullscreen mode Exit fullscreen mode

Configuration

All server settings live in settings.yml:

server:
  port: 8080
  threadSize: 4
  ui: true

Enter fullscreen mode Exit fullscreen mode

ui: true enables a built-in management panel where you can start, stop, and reload the server without touching the terminal. Useful if you're deploying somewhere without a great CLI experience.

Framework support

Because Aurelius just serves HTML, it works with any CSS framework that can be loaded from a CDN. Tailwind, Bootstrap, Bulma — just drop the <link> tag in your HTML and it works.

Who is this for?

Aurelius is a good fit if you:

  • Want a zero-dependency web server for a small internal tool or personal site
  • Are learning Java web development and want to see how a server works without framework magic hiding everything
  • Need to prototype a REST API quickly without standing up a Spring application
  • Want to understand Netty's HTTP handling without writing the boilerplate yourself

It's not the right tool for large production applications with complex routing, authentication middleware, or ORM integration. For those, reach for Spring Boot or Quarkus.

What's next

The main thing on my list is proper test coverage — the container parsing and placeholder substitution logic especially need unit tests. I'm also thinking about WebSocket support and a simple session management API.

11 releases in, Aurelius handles the basics solidly. If you're the kind of developer who likes understanding what's running under the hood, give it a try.

Links

If you build something with it or have feedback on the container system design, I'd love to hear from you in the comments.