Skip to content
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

[ISSUE #51] Config Mgmt basic function and config,runtime,store,cluster SQL #52

Merged
merged 30 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
11d1668
refactor: add dependency of console module and move controllers into …
Lambert-Rao Jan 21, 2024
f81c0dd
fix: add logback config, fix application-dev.yml and move `</dependen…
Lambert-Rao Jan 21, 2024
d9cf419
FirstCommit
zzxxiansheng Jan 28, 2024
6bd0009
Merge remote-tracking branch 'eventmesh/dev' into dev
zzxxiansheng Jan 29, 2024
df369e7
remerge
zzxxiansheng Feb 1, 2024
1b82aad
Merge remote-tracking branch 'origin/dev' into dev
zzxxiansheng Feb 1, 2024
3391325
first improve
zzxxiansheng Feb 1, 2024
c7da0b9
Merge remote-tracking branch 'origin/dev' into dev
zzxxiansheng Feb 1, 2024
0b17293
second improve
zzxxiansheng Feb 1, 2024
22b8528
third improve
zzxxiansheng Feb 1, 2024
edb4005
fourth improve
zzxxiansheng Feb 1, 2024
c030859
fourth improve
zzxxiansheng Feb 1, 2024
a6b5caa
fourth improve
zzxxiansheng Feb 1, 2024
92b2953
Update and rename EventmeshConsoleApplication.java to EventMeshDashbo…
zzxxiansheng Feb 5, 2024
6dcb360
rename this starter class file to EventMeshDashboardApplication
zzxxiansheng Feb 5, 2024
7f5bf0d
rename this starter class file to EventMeshDashboardApplication
zzxxiansheng Feb 5, 2024
7f2e85b
change some resource file
zzxxiansheng Feb 5, 2024
b9718ed
improve name
zzxxiansheng Feb 5, 2024
b4ab687
improve name
zzxxiansheng Feb 5, 2024
bff80be
Modify the fields of the synchronized log table
zzxxiansheng Feb 5, 2024
e5765d0
improve name
zzxxiansheng Feb 5, 2024
390dd05
improve name
zzxxiansheng Feb 5, 2024
befb6ee
Merge remote-tracking branch 'origin/dev' into dev
Mar 3, 2024
ca26ec5
config basic function and config ,runtime,store,cluster sql
Mar 6, 2024
ab82d06
try to resolve build error
Mar 6, 2024
506023b
Merge branch 'apache:dev' into dev
zzxxiansheng Mar 6, 2024
886c754
Some changes in the specification
Mar 7, 2024
e6081f6
something rename
Mar 8, 2024
8b0db55
one sql update
Mar 8, 2024
3e01c42
tag something to do
Mar 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
import java.util.List;

import org.springframework.stereotype.Service;
/**
* TODO Pending interfaces
*/

@Service
public class ConnectorConfigService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
import java.util.List;

import org.springframework.stereotype.Service;
/**
* TODO Pending interfaces
*/

@Service
public class RuntimeConfigService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
import java.util.List;

import org.springframework.stereotype.Service;
/**
* TODO Pending interfaces
*/

@Service
public class StoreConfigService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
import java.util.List;

import org.springframework.stereotype.Service;
/**
* TODO Pending interfaces
*/

@Service
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, missing a new line before javadoc here. Anyway😂

public class TopicConfigService {
Expand Down
Loading