Questions tagged [embedded-tomcat-8]

Embedded Apache Tomcat 8

Apache Tomcat 8 implements new versions of the Servlet, JSP and EL specifications as well as adding support for the new WebSocket specification.

It requires Java 7 or later.

Tomcat 8 supports the Java Servlet 3.1, JavaServer Pages 2.3, Java Unified Expression Language 3.0 and Java WebSocket 1.0 specifications

Tomcat 8 embeds a packaged renamed version of Commons DBCP 2.x.

Reference :

http://tomcat.apache.org/tomcat-8.0-doc/changelog.html

213 questions
0
votes
1 answer

How can I configure embedded tomcat to listen to port 80 and 8443?

I am using embedded Tomcat with Spring and I configured it programmatically to listen to port 8443 for https and it works. Below is my code snippet from my Apllication.java file. How can I configure it to also listen to port 80 for http…
0
votes
1 answer

Spring-Boot + Tomcat 8.0.3 FileUpload error Unable to process parts as no multi-part configuration has been provided

I have a working spring-boot mvc application where i am trying integrate a file upload option. As per manual I have configured the following template: /src/main/resource/templates/fileUpload.html
Tito
  • 2,234
  • 6
  • 31
  • 65
-1
votes
1 answer

How do I choose the URL for my Spring Boot webapp without port number?

I have production tomcat server running on 8080 port with few war files. Now, I have created a vaadin/spring-boot jar, and I need to deploy it in that server. I have changed the embedded port of spring-boot application to 8082. Its working fine, but…
1 2 3
14
15