What does Java FE and BE mean?

5

I'm starting with the Java language and today I came across a text mentioning Java ( FE and BE ). What do these acronyms mean?

    
asked by anonymous 02.07.2015 / 16:53

2 answers

9

Java Front End Developer (FE) and Java Back-End (BE). Not the best definition, but here is a definition to get an idea.

The terms FE and BE are not restricted to Java, it can refer to any programming language.

    
02.07.2015 / 17:08
0

FE refers to the front end. Generally JavaScript and related (AngujarJs, React, JQuery, etc.), "what runs in the browser". BE refers to the back end or server side of the application, "which runs on the server."

In this case, Java FE should refer to Servlet and JSP, while Java BE to the rest of the application.

    
24.02.2017 / 19:09