Browse Source

correct some urls

Nick Kasvosve 10 years ago
parent
commit
4dc79eeac8

+ 5 - 5
frameworks/Java/beyondj/README.md

@@ -4,12 +4,12 @@ This is the BeyondJ portion of a [benchmarking test suite](../) comparing a vari
 
 
 This is using several [BeyondJ projects](http://beyondj.com/dist/docs/README.html) to build an application.
 This is using several [BeyondJ projects](http://beyondj.com/dist/docs/README.html) to build an application.
 
 
-## How to run this app locally
+## How to run this app
 
 
 You can easily run this sample application 
 You can easily run this sample application 
 For that, simply run:
 For that, simply run:
 
 
-    java -jar beyondj.jar
+    java -jar beyondj-launcher/target/beyondj.jar &
 
 
 ## Guides
 ## Guides
 * [Building a service](http://beyondj.com/dist/docs/README.html)
 * [Building a service](http://beyondj.com/dist/docs/README.html)
@@ -19,8 +19,8 @@ See [BeyondJ projects documentation](http://beyondj.com/dist/docs/README.html).
 
 
 ## Application Endpoints
 ## Application Endpoints
 
 
-When deployed locally, the application uses the 'beyondj-service' context; for the benchmark, all
-URLs are prefixed with "/perf".
+The application uses the 'beyondj-service' context;
+For the benchmark, all URLs are prefixed with "/perf"
 Check out [SampleApplication, the main Application file]
 Check out [SampleApplication, the main Application file]
 (beyondj-launcher/src/main/java/com/techempower/beyondj/BeyondJApplication.java)
 (beyondj-launcher/src/main/java/com/techempower/beyondj/BeyondJApplication.java)
 
 
@@ -60,7 +60,7 @@ Check out [SampleApplication, the main Application file]
 ## Infrastructure Software Versions
 ## Infrastructure Software Versions
 The tests were run with:
 The tests were run with:
 
 
-* [BeyondJ 1.0-SNAPSHOT](http://beyondj.com/dist/docs/README.html)
+* [BeyondJ 1.0](http://beyondj.com/dist/docs/README.html)
 * [Java HotSpot 1.8.0_20]
 * [Java HotSpot 1.8.0_20]
 
 
 
 

+ 8 - 8
frameworks/Java/beyondj/benchmark_config.json

@@ -3,12 +3,12 @@
   "tests": [{
   "tests": [{
     "default": {
     "default": {
       "setup_file": "setup",
       "setup_file": "setup",
-      "json_url": "/servlets/json",
-      "db_url": "/db",
-      "query_url": "/servlets/performance?queries=",
-      "fortune_url": "/servlets/performance?op=fortunes",
-      "plaintext_url": "/servlets/performance?op=plaintext",
-      "update_url": "/servlets/performance?op=updates&queries=",
+      "json_url": "/beyondj-service/perf/hello",
+      "db_url": "/beyondj-service/perf/database/db",
+      "query_url": "/beyondj-service/perf/database/queries?&queries=",
+      "fortune_url": "/beyondj-service/perf/fortunes",
+      "plaintext_url": "/beyondj-service/perf/hello/plaintext",
+      "update_url": "/beyondj-service/perf/database/updates?&queries=",
       "port": 8080,
       "port": 8080,
       "approach": "Realistic",
       "approach": "Realistic",
       "classification": "Fullstack",
       "classification": "Fullstack",
@@ -20,8 +20,8 @@
       "webserver": "None",
       "webserver": "None",
       "os": "Linux",
       "os": "Linux",
       "database_os": "Linux",
       "database_os": "Linux",
-      "display_name": "spring",
-      "notes": "",
+      "display_name": "Beyondj",
+      "notes": "BeyondJ is the Next Generation Reactive and Modular Java container",
       "versus": "servlet"
       "versus": "servlet"
     }
     }
   }]
   }]

+ 1 - 0
frameworks/Java/beyondj/beyondj-launcher/pom.xml

@@ -489,6 +489,7 @@
     </dependencies>
     </dependencies>
 
 
     <build>
     <build>
+        <finalName>beyondj</finalName>
         <plugins>
         <plugins>
             <plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <groupId>org.apache.maven.plugins</groupId>

+ 2 - 2
frameworks/Java/beyondj/setup.sh

@@ -3,5 +3,5 @@
 fw_depends java8 maven
 fw_depends java8 maven
 
 
 mvn clean package
 mvn clean package
-cd target
-java -jar beyondj.jar &
+
+java -jar beyondj-launcher/target/beyondj.jar &