IoT Full-Stack Technology
Author

IoT Full-Stack Technology

Dedicated to sharing IoT cloud services, embedded systems, and mobile client technology, with no spam ads.

74
Articles
0
Likes
282
Views
0
Comments
Recent Articles

Latest from IoT Full-Stack Technology

74 recent articles
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 4, 2026 · Artificial Intelligence

Write Code in IDEA with Codex—Zero Manual Typing Required

The article reviews OpenAI's Codex extension for JetBrains IDEs, detailing its easy setup, GPT‑5.4 performance on SWE‑Bench, hands‑free project cloning, automatic environment provisioning, global refactoring, test generation, and real‑world usage examples that demonstrate its near‑professional coding capabilities.

AI coding assistantCodexGPT-5.4
0 likes · 6 min read
Write Code in IDEA with Codex—Zero Manual Typing Required
IoT Full-Stack Technology
IoT Full-Stack Technology
Jun 3, 2026 · Backend Development

Can We Achieve Seamless Account Interoperability Across Multiple Company Systems?

The article examines the challenges of multiple corporate systems requiring separate logins, explains traditional session mechanisms and their limitations in clustered environments, compares session replication versus centralized storage, and presents a complete Java Spring implementation of CAS‑based single sign‑on with code samples and a discussion of differences from OAuth2.

AuthenticationJavaSSO
0 likes · 13 min read
Can We Achieve Seamless Account Interoperability Across Multiple Company Systems?
IoT Full-Stack Technology
IoT Full-Stack Technology
May 29, 2026 · Backend Development

How We Cut a 30‑Second API Call to Under 1 Second on 2 Million Records

In a high‑concurrency transaction system, the author diagnosed a 30‑second API latency caused by costly SQL scans and Java Map creation on over two million rows, then applied SQL aggregation, moved counting logic into PostgreSQL, and introduced a Caffeine cache, ultimately reducing the response time to under 0.8 seconds while highlighting relational‑database limits for massive data.

Caffeine cacheJavaMyBatis
0 likes · 10 min read
How We Cut a 30‑Second API Call to Under 1 Second on 2 Million Records
IoT Full-Stack Technology
IoT Full-Stack Technology
May 28, 2026 · Artificial Intelligence

What Exactly Is an AI Agent? A Simple Guide vs. Regular Chatbots

An AI Agent combines a large language model with a clear goal, callable tools, and a multi‑step reasoning loop, enabling perception, planning, and action that go beyond simple chat by decomposing tasks, using external APIs, iterating on errors, and managing memory, while acknowledging its limitations.

AI AgentPerception-Planning-ActionTask Automation
0 likes · 7 min read
What Exactly Is an AI Agent? A Simple Guide vs. Regular Chatbots
IoT Full-Stack Technology
IoT Full-Stack Technology
May 26, 2026 · Backend Development

Build a Real‑Time Message Push Service with Spring Boot, Netty and WebSocket

This article walks through creating a Netty‑based WebSocket server integrated with Spring Boot, covering server bootstrap, global channel management, pipeline configuration, a custom handler for client messages, and a push‑message service that can target individual users or broadcast to all connections, complete with code samples and testing steps.

JavaMessage PushNetty
0 likes · 6 min read
Build a Real‑Time Message Push Service with Spring Boot, Netty and WebSocket