Websites Using Java EE

I have a simple question, but I can not find the answer. I am wondering if we can see that the site is built using Java EE technology or servlet / JSP. I think that in some cases it would be possible to search for special pages from the server (404, incorrect parameters ...), but what about everyday use?

In fact, I am looking for a collection of a large (or widely used) website using java technology, and I cannot find a list of them. I will be very happy if you can help me with these two small questions.

+3
source share
3 answers

I don’t think there is a bulletproof way to tell you which technology a website that you don’t control has been built: any general hints can always be hidden or made specifically for something else.

You can see the server header in the HTTP response (Tomcat seems to be using "Apache-Coyote / 1.1"), this may give you the key. Keep in mind that the server on which the website is running can be hidden from external access, and other servers act as proxies located in front of it. You cannot be sure which server header you will receive.

- Java URL- (*.do = Struts,.jsf/.faces = Java Server Faces,? wicket: interface = Wicket ..), , . REST URL-, .

, , Java?

+1

, URL- . , , , Google Flickr Java. / .

Java EE. . Liferay, IceFaces, Seam

+2

You can use nmap to determine the type of server.

For example: nmap -A -T4 serverhostname

See here: http://nmap.org/book/vscan.html

0
source

Source: https://habr.com/ru/post/1748714/


All Articles