java Programming Glossary: tomcat's
Servlet for serving static content http://stackoverflow.com/questions/132052/servlet-for-serving-static-content unless they are for the static path. The problem is that Tomcat's default servlet does not take the ServletPath into account so..
How to get UTF-8 working in java webapps? http://stackoverflow.com/questions/138948/how-to-get-utf-8-working-in-java-webapps Linux Windows Mysql requires the following Configuring Tomcat's server.xml It's necessary to configure that the connector uses..
Can I connect to SQL Server using Windows Authentication from Java EE webapp? http://stackoverflow.com/questions/167464/can-i-connect-to-sql-server-using-windows-authentication-from-java-ee-webapp integratedSecurity true And copy the appropriate DLL to Tomcat's bin directory sqljdbc_auth.dll provided with the driver MSDN..
Simplest way to serve static data from outside the application server in a Java web application http://stackoverflow.com/questions/1812244/simplest-way-to-serve-static-data-from-outside-the-application-server-in-a-java are all located outside the webapp and you want to have Tomcat's DefaultServlet to handle them then all you basically need to..
Using a JNDI datasource created by another application with Tomcat http://stackoverflow.com/questions/1940546/using-a-jndi-datasource-created-by-another-application-with-tomcat in this second application given that I can't use a Tomcat's resource in server.xml or a context.xml file for different reasons..
Java web development, what skills do I need? [closed] http://stackoverflow.com/questions/1958808/java-web-development-what-skills-do-i-need JBoss AS EAP or GlassFish or TomEE . JBoss and TomEE uses Tomcat's core engine under the hoods and adds more Java EE capabilities..
Invalid <url-pattern> servlet mapping in Tomcat 6.0 http://stackoverflow.com/questions/26732/invalid-url-pattern-servlet-mapping-in-tomcat-6-0 url pattern servlet mapping Above is the snippet from Tomcat's web.xml. The URL pattern NEXTEVENT on start up creates java.lang.IllegalArgumentException..
To prevent a memory leak, the JDBC Driver has been forcibly unregistered http://stackoverflow.com/questions/3320400/to-prevent-a-memory-leak-the-jdbc-driver-has-been-forcibly-unregistered during Tomcat hotdeployments. Move the JDBC driver to Tomcat's lib folder and have a connection pooled datasource to manage.. pooled datasource to manage the driver. Note that Tomcat's builtin DBCP does not deregister drivers properly on close...
Setting property 'source' to 'org.eclipse.jst.jee.server:JSFTut' did not find a matching property http://stackoverflow.com/questions/3566146/setting-property-source-to-org-eclipse-jst-jee-serverjsftut-did-not-find-a warning basically means that the Context element in Tomcat's server.xml contains an unknown attribute source and that Tomcat.. attributes in the server.xml will produce a warning during Tomcat's startup even though there is no DTD nor XSD for server.xml ...
Best Location for Uploading file http://stackoverflow.com/questions/4548190/best-location-for-uploading-file path outside your webapp and add its path as Context in Tomcat's conf server.xml so that it's available online as well. If you.. available online as well. If you don't want to alter the Tomcat's conf server.xml for some reason then you need to create a servlet..
How can I make Tomcat pre-compile JSPs on startup? http://stackoverflow.com/questions/497830/how-can-i-make-tomcat-pre-compile-jsps-on-startup for the first hit. It also highlights bizarre bugs in Tomcat's JSP compiler. The Tomcat documentation gives recommendations..
Tomcat and Eclipse Zero Turnaround Deployment http://stackoverflow.com/questions/6328604/tomcat-and-eclipse-zero-turnaround-deployment I've read that I can add additional watched resources in Tomcat's context.xml but this doesn't seem to be quite what I need unless..
How to provide a context configuration for a web application in Tomcat? http://stackoverflow.com/questions/7142365/how-to-provide-a-context-configuration-for-a-web-application-in-tomcat file that can be copied into the appBase folder webapps . Tomcat's documentation says if there is such a file it won't be overwritten..
IllegalStateException: Not supported on AsyncContext.startAsync(req, res) http://stackoverflow.com/questions/7749350/illegalstateexception-not-supported-on-asynccontext-startasyncreq-res servlet 3.0 share improve this question I checked out Tomcat's code and saw that the asyncSupported variable has to be explicitly..
Application vulnerability due to Non Random Hash Functions http://stackoverflow.com/questions/8669946/application-vulnerability-due-to-non-random-hash-functions in case you cannot use one of the above solutions. FYI Tomcat's documentation is here http tomcat.apache.org tomcat 6.0 doc..
Sharing session data between contexts in Tomcat http://stackoverflow.com/questions/9436736/sharing-session-data-between-contexts-in-tomcat configureable from the Servlet 3.0 API on. It's then on Tomcat's side configureable by setting sessionCookiePath to in Context..
|