-1

I have a servlet application with JPA and Vaadin, it's running on GlassFish server. Am I using Java EE here? Or is still Java SE?

revolt
  • 231
  • 1
  • 5
  • 12

2 Answers2

1

Servlets are not part of Java SE, but of Java EE. So you are using Java SE and some parts of Java EE.

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197
1

SE doesn't come with server or any other software stack so If your application is using above tools there is a higher chance that your application is using EE here.

Umair Zahid
  • 135
  • 9