Top "Servlet-3.0" questions

Java Servlets 3.0 is a new API that supports extensibility/pluggability, Ease of Development (EoD) using the newer language features, Async and Comet support, Security, and other features being as part of the revision for Java EE 6.

Can I use servlet api 3.0 and jetty 8?

I want to use 3.0 servlet-api with Jetty 8. Currently 2.4 servlet-api is defined in my web.xml. And in the webdefault.xml 2.5 …

servlets servlet-3.0 jetty-8
What does a Servlet 3.0 compatible web-app declaration in web.xml do?

I am deploying a web application that is declared in web.xml and deployed as a .war file. I am …

java web-applications jetty servlet-3.0
How to use Servlet 3 @WebServlet & async with Spring MVC 3?

I would like to integrate the servlet 3.0 async support with spring MVC. Something like: @RequestMapping("/chat") @WebServlet(name="myServlet", asyncSupported=…

java spring spring-mvc long-polling servlet-3.0
Using Spring MVC 3.1+ WebApplicationInitializer to programmatically configure session-config and error-page

WebApplicationInitializer provides a way to programmatically represent a good portion of a standard web.xml file - the servlets, filters, …

java spring-mvc servlet-3.0
Access file inside WebContent from servlet

I trying to access the html files inside the WebContent/alerts folder using its relative path from servlet. But i …

java servlets jsoup servlet-3.0 web-application-project
How to let JSF pass through HTML attributes

I am using Primefaces 3 in JSF 2 to make a search box. I need to add a non-standard attribute (x-webkit-speech) to …

html jsf jsf-2 primefaces servlet-3.0
JBoss 7 appends JSESSIONID to URL despite tracking-mode cookie

Yes, this is another "JSESSIONID in URL" question, but I haven't been able to find an answer. I'm running JBoss …

java jboss jboss7.x servlet-3.0 jsessionid
Spring Boot does not honor @WebServlet

I created a Servlet (extending from HttpServlet) and annotated as per 3.0 specs with @WebServlet(name="DelegateServiceExporter", urlPatterns={"/remoting/DelegateService"}) My @…

spring annotations spring-boot servlet-3.0 embedded-tomcat-8
WebSphere 8, web.xml version="3.0", default servlet-mapping?

Migrating a legacy application from WebSphere v.6 to WebSphere v.8. The application's web.xml only contains declarations of servlets but …

java websphere web.xml servlet-3.0