You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is an attempt to port the original work https://github.com/ornl-epics/pvws to a Spring Boot-based web application. While the code is adapted to the web socket APIs of Spring Boot, most of the code is essentially unchanged.
2
+
3
+
Requirements
4
+
------------
5
+
6
+
To build: JDK 17, Maven 3.8+
7
+
8
+
To run: JRE 17
9
+
10
+
Build
11
+
=====
12
+
13
+
Executable jar
14
+
--------------
15
+
16
+
To build an executable Spring Boot jar (embedded Tomcat):
17
+
18
+
``>mvn clean install``
19
+
20
+
Output is ``pvws.jar`` in the ``target`` directory.
21
+
22
+
Tomcat war
23
+
----------
24
+
25
+
To build war for deployment in Tomcat container:
26
+
27
+
``>mvn -Pwar clean install``
28
+
29
+
Output is ``pvws.war`` in the ``target`` directory.
30
+
31
+
Run
32
+
===
33
+
34
+
Settings
35
+
--------
36
+
37
+
Bundled ``application.properties`` defines a few settings (e.g. default protocol). To define other settings or override
38
+
settings, one may create a file named exactly ``application.properties`` and edit as needed. This
39
+
file must be readable by the user account owning the application process.
0 commit comments