Registry / networking / netty-bom

netty-bom

JSON →
library4.2.12.Finaljavamavenunverified

Bill of Materials for Netty, providing dependency management for Netty components.

<dependency> <groupId>io.netty</groupId> <artifactId>netty-bom</artifactId> <version>4.2.12.Final</version> </dependency>
INSTALL
IMPORT
SIG · NETTY-BOM
N
netty-bom
networkingjavav4.2.12.Final
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ServerBootstrap
io.netty.bootstrap.ServerBootstrap

Minimal Netty server bootstrap example.

import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.nio.NioServerSocketChannel; public class QuickStart { public static void main(String[] args) { new ServerBootstrap() .group(new NioEventLoopGroup()) .channel(NioServerSocketChannel.class) .localAddress(8080) .childHandler(new ChannelInitializer<>() { @Override protected void initChannel(Channel ch) {} }) .bind(); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
4.2.12.Finallatest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
netty-bom — mvn dependency:get netty-bom · libregistry