Reputation: 3844
I am wondering what does the let
suffix mean in Java world?
I mean the let
in applet
, servlet
, facelet
, etc.
What is it?
Upvotes: 3
Views: 3102
Reputation: 5213
The meaning is similar to that of booklet. A smaller part of an application: applet
, a smaller component of a server application: servlet
, and so on.
From Google definition:
Upvotes: 3
Reputation: 1529
let - the diminutive suffix. This is a non-independent software component that runs in the context of another, full-fledged application that is designed for one narrow task, and has no value in isolation from the base application.
Upvotes: 2