embedded-tomcat-8 Questions

2

I am using Spring Boot with Embedded Tomcat and attempting to use JNDI but getting the following error: javax.naming.NameNotFoundException: Name [jdbc/dataSource] Any tips would be greatly appre...
Irvine asked 24/1, 2015 at 23:42

1

Solved

The closest stackoverflow question that explains my symptoms is here - How can I deploy a Grails 3.0.1 war file in Tomcat7? I am in the process of upgrading a Grails 2.3.4 application to Grails 3....
Fugere asked 19/1, 2017 at 22:8

2

Solved

How do you use Hazelcast as a http session store with embedded Tomcat with Spring Boot and Spring Security? I see there is a EmbeddedServletContainerCustomizer and SpringAwareWebFilter but I don't ...
Humus asked 16/12, 2014 at 20:48

1

Solved

I need to configure AJP connector in embedded tomcat https://tomcat.apache.org/tomcat-8.0-doc/config/ajp.html Equals to the following configuration: <Connector port="8009" protocol="AJP/1.3" re...
Shipper asked 23/12, 2016 at 8:10

3

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

2

Solved

I seem to be running into an issue bumping up against the 8k size limit that embedded tomcat has for stomp websocket messages. When sending a message from server to client I am getting the follow...

1

I created a simple test application: import java.util.logging.Logger; import org.apache.catalina.Context; import org.apache.catalina.LifecycleException; import org.apache.catalina.startup.Tomcat;...
Quennie asked 12/8, 2015 at 18:42

2

This works: String webappDir = "..."; context = tomcat.addWebapp("/", new File(webappDir).getAbsolutePath()); This doesn't: context = tomcat.addContext("/", new File("").getAbsolutePath()); I...
Optician asked 4/5, 2015 at 22:4

1

Solved

I am using Spring Boot 1.2.2 with Thymeleaf. My Problem is I try to post a long list of Items (some labels, one checkbox) in a form, which cant be perform so many items of my list. (I tested small ...
Gynous asked 2/3, 2015 at 13:53

1

Solved

I am writing a spring boot based application and noticed a few warnings in chrome. It complains that for example web fonts (extension woff) are send as plain/text instead of their correct mime type...
Corner asked 23/12, 2014 at 9:14

© 2022 - 2024 — McMap. All rights reserved.