Could someone help me understand or rather provide a comparison between using winstone vs tomcat from both functionality perspective as well as performance perspective.
Winstone vs Tomcat
572 Views Asked by user3751028 At
1
There are 1 best solutions below
Related Questions in PERFORMANCE
- Slow performance on ipad erasing image
- Can Apache Ant be told to cache its XML files?
- What are the pros and cons of the picture element?
- DB candidate as CouchDB/Schema replacement
- python member str performance too slow
- Split a large query (2 days) into pieces to increase the speed in Postgres
- Use GUI displayed results of SQL query vs new queries?
- fastest way to map a large number of longs
- Bash regular expression execution hangs on long expressions
- Why is calling a function so slow in Javascript?
- Performance of element-compare in java collections
- "Capture GPU Frame" in XCode -- iOS only?
- Efficiency penalty of initializing a struct/class within a loop
- Change the rotating speed of the circle when the mouse moves using javascript
- Replace foreach to make loop into queryable
Related Questions in TOMCAT
- Best way to pass an environment variable to several config files
- Openshift context path
- KeyStore file is not found in jar, although present in jar
- phpseclib of how to get PID and kill
- Unable to connect database of lamp instance from servlet running on tomcat instance of google cloud
- Spring and Tomcat: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
- How can I get a custom header from the client in Tomcat?
- why lost Mysql connection pool after a period?
- Eclipse Java EE + Bitnami Tomcat Stack
- Service not starting using Spring-boot during integration tests
- Image not loading in web page and says 404 error
- Maven Tomcat plugin - 404 WebServlet not found
- How to deploy a spring boot MVC application in traditional tomcat webapps folder?
- Tomcat Manager is not accessible in multi-domain configuration
- JSP return Jasper Exceptions on my friend's pc's when it works on mine
Related Questions in SERVLET-CONTAINER
- Why should I use cookies other than for storing a session id?
- Where to invoke ExecutorService.shutdown() in web application
- How to access deployed BrowserRouter used react project after depolying into tomcat server
- doGet or doPost method invocation
- Web server with REST api - Spring Boot - Mulitple servlet containers
- transfer of an HttpSession with some non-Serializable attributes between cluster nodes
- jsp container vs servlet container
- How is client-side rendering done in Eclipse RAP?
- Why Tomcat support Hibernate?
- I wanted to create a new session, once current servlet session got expired.
- Implementing HTTPServlet interface in WebObjects application
- Jersey servlet class is constructed with every request
- Understanding the whole process of a "web transaction"
- Why does servletContext.getRealPath returns null on tomcat 8?
- HTTP error 404 while running my servlet page meant for downloading Long BLOB file from database using JSP and servlet
Related Questions in WINSTONE
- custom java.util.logging properties file resulting in duplicate log files
- Jenkins standalone implementation: Winstone or Jetty?
- Winstone: could not find Factory: javax.faces.context.FacesContextFactory
- Jenkins Server Suddenly Fails. Cannot reach GUI
- Winstone vs Tomcat
- Disable non-DHE and non-ECDHE ciphers in JSSE
- How to get the OriginURL using morgan and winston.js format in nodejs?
- Where to put the sqlite3-database when deploying a JRuby-On-Rails App as a war?
- Jetty/winstone connector configuration in Jenkins
- Hudson context url
- Is there any solution for OpenAM+Winstone?
- How to info log message stored only info log file?
- Embed Winstone with jetty server
- Winstone configure self signed keystore for SSL Authentication
- Lightweight servlet container for production use
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Winstone is an old servlet-container. It is not maintained anymore (last release was in January 2008) and only supports servlet api 2.5. As a feature comparison, Tomcat supports servlet api 3.1 (and support of servlet api 4.0 is on the way). Tomcat is the most used servlet container in the world and well maintained.
For performance comparison between Tomcat and Winstone, I do not know of a benchmark but I would put trust in the most used and tested (ie Tomcat).
Between Tomcat and Winstone, the choice is fast.
Note: Winstone was known to be a lightweight servlet container embedded in Jenkins. But Jenkins has replaced it by embedded Jetty a long time ago.