Contents
- For now only file as data store of resources is supporting.
- First, can specify server port on which application will run. It can do by run of jar application with VM options or
in
application.yml. Default server port is8999. E.g., if server port is1111and we need run production profile:java -Dserver.port=1111 -Dspring.profiles.active=production -jar observer.jar. - Next in
application.ymlcan change thefilenameandfiletypefile from which will read the resources if has selected file as data store of resources. Also, can changeseparate-characterandcomment-characterto convenient manual work with resource file and can change http client timeouts at your discretion.
-
After start the application, resource file will create and can add resource with vertical line as separator. E.g.,
name of resource|http://site.com -
Or can manage the resources in the Preferences page.
-
After reload the home page all resources will reload.
- Can use test mode for specific functional test cases.
E.g.,: add
spring.profiles.active=testto environment variables in IDE orjava -Dserver.port=1111 -Dspring.profiles.active=test -jar observer.jarwhile using jar file.