JSP
1 program
Added 2026-03-17T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: JavaServer Pages, Jakarta Server Pages
Provenance: commit 7450077c1e · authored 2026-03-17T06:17:49+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
7 sources · pl_id:
pl/java-server-pagesWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Eclipse Foundation |
|---|---|
| First appeared | 1999 |
| Homepage | https://projects.eclipse.org/projects/ee4j.jsp |
Extensions claimed by this language
4 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.jsp | linguist | primary | 32.2M files |
.jsp | pygments | primary | 32.2M files |
.jsp | wikidata | primary | 32.2M files |
.tag | linguist | secondary | 677.3K files |
Related languages
LLM-contributed programs
FizzBuzz
Provenance: commit 7450077c1e · authored 2026-03-17T06:17:49+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
<%@ page language="java" contentType="text/html; charset=UTF-8" %>
<%
for (int i = 1; i <= 100; i++) {
if (i % 15 == 0) out.println("FizzBuzz");
else if (i % 3 == 0) out.println("Fizz");
else if (i % 5 == 0) out.println("Buzz");
else out.println(i);
}
%>
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)
Disambiguation rules
Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.tag/0 | .tag | predicates | [{"kind": "any", "regexes": ["<%[@!=\\s]?\\s*(taglib|tag|include|attribute|variable)\\s"]}] |