About 202,000 results
Open links in new tab
  1. Performance / Stress Testing Java EE applications - Stack Overflow

    12 It's difficult to find all bottlenecks, deadlocks, and memory leaks in a Java application using unit tests alone. I'd like to add some level of stress testing for my application. I want to test the …

  2. Load testing for java client/server application - Stack Overflow

    Dec 2, 2010 · I have written a java client server application (not http), which i need to load test. However, most tools out there such as jmeter and grinder seem to be targeted to http …

  3. java - Populating Spring @Value during Unit Test - Stack Overflow

    Jun 28, 2013 · My test case is testing the code that validates the value, not the value itself. Is there a way to use Java code inside my test class to initialize a Java class and populate the …

  4. Performing a Stress Test on Web Application? - Stack Overflow

    Aug 11, 2008 · JMeter is an open-source load testing tool, written in Java. It's capable of testing a number of different server types (for example, web, web services, database, just about …

  5. Load different application.yml in SpringBoot Test

    Aug 2, 2016 · Be aware, it will additionally load the application-test.yml, so all properties that are in application.yml are still going to be applied as well. If you don't want that, either use a profile …

  6. java - How to test a component / bean in Spring Boot - Stack …

    Aug 10, 2018 · To test a component/bean in a Spring Boot application, the testing part of the Spring Boot documentation provides much information and multiple ways : @Test, …

  7. Load Testing Java Web Application - Stack Overflow

    Apr 21, 2010 · I would like to build my own load testing tool in Java with the goal of being able to load test a web application I am building throughout the development cycle. The web …

  8. java - Running Selenium scripts with JMeter - Stack Overflow

    Oct 19, 2011 · 31 I have Selenium automation scripts ready with functional flow, now I want to integrate those scripts with JMeter for load-testing. Is that possible? If so how to integrate …

  9. java - What does "Could not find or load main class" mean

    Aug 7, 2013 · Reasons why Java cannot find the class When you get the message "Could not find or load main class ...", that means that the first step has failed. The java command was not …

  10. How to read a text-file resource into Java unit test?

    Oct 8, 2010 · I have a unit test that needs to work with XML file located in src/test/resources/abc.xml. What is the easiest way just to get the content of the file into String?