-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add standalone version of the simple WS #532
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DaSpood
changed the title
Draft: Add standalone version of the simple WS
Add standalone version of the simple WS
Jul 15, 2024
jqm-all/jqm-ws/src/main/java/com/enioka/jqm/ws/api/ServiceSimpleStandalone.java
Outdated
Show resolved
Hide resolved
jqm-all/jqm-wstst/src/test/java/com/enioka/jqm/ws/api/ServiceSimpleStandaloneTest.java
Outdated
Show resolved
Hide resolved
What should we do
|
DaSpood
force-pushed
the
ago/standalone-ws
branch
2 times, most recently
from
July 19, 2024 07:53
8745f81
to
cead364
Compare
DaSpood
force-pushed
the
ago/standalone-ws
branch
from
July 19, 2024 07:59
cead364
to
1103b00
Compare
DaSpood
force-pushed
the
ago/standalone-ws
branch
from
July 19, 2024 08:05
1103b00
to
63395ed
Compare
standaloneMode = Boolean.parseBoolean( | ||
GlobalParameter.getParameter(DbManager.getDb().getConn(), "wsStandaloneMode", "false")); | ||
|
||
if (standaloneMode) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
may be add a check if standalone and db != from hsqldb than error "not supported"
ArnaudChirat
pushed a commit
that referenced
this pull request
Jul 29, 2024
* Add standalone version of the simple WS * Modify ServiceClient instead of ServiceSimple
ArnaudChirat
pushed a commit
that referenced
this pull request
Oct 2, 2024
* Add standalone version of the simple WS * Modify ServiceClient instead of ServiceSimple
ArnaudChirat
added a commit
that referenced
this pull request
Oct 2, 2024
* Database initialisation overhaul with Liquibase As those databases don't have sequence, add autoincrement for mysql and mariadb. For info, Maria db now support create sequence * Update all Id type for model from int to long (#534) Id became BIGINT into database Use only primitive type UNLESS is nullable according to the database schema (Liquibase). Update CI to test only on LTS database * Add standalone version of the simple WS (#532) * Add kubernetes template for standalone deployment (#538) * Merge kube-specific deploy files with docker ones --------- Co-authored-by: Marc-Antoine Gouillart <marsu_pilami@msn.com> Co-authored-by: Antoine Gonzalez <perso.antoine.gonzalez@gmail.com> Co-authored-by: Antoine Gonzalez <antoine.gonzalez@enioka.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add standalone mode for ServiceClient WS: client will redirect to other WS if the ID's matching IP is different from the local one.
Add IP<>ID conversion helpers to
jqm-shared
.Missing: