0% found this document useful (0 votes)
3 views2 pages

SpringProject

The document outlines the structure of an application service project, detailing its package name, tables, and data entities. It describes two main tables: 'app_properties' and 'app_service', including their fields and data types. Additionally, it includes various Data Transfer Objects (DTOs) and response structures for managing application properties and services.

Uploaded by

vivek kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views2 pages

SpringProject

The document outlines the structure of an application service project, detailing its package name, tables, and data entities. It describes two main tables: 'app_properties' and 'app_service', including their fields and data types. Additionally, it includes various Data Transfer Objects (DTOs) and response structures for managing application properties and services.

Uploaded by

vivek kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

application-service ------:- project name

------------------------------------------------

com.jsp.appService-----:- package name


------------------------------------------------

Tables:- app_properties , appp_service


------------------------------------------------

com.jsp.appService.Entity
com.jsp.appService.Dto
-----------------------------------------------------------------------------------
----------------------------------------------

AppProperies
AppProperiesDto
altKey
moduleName moduleName
propertyKey propertyKey
propertyValue
propertyValue
createdDate
createdDate
modifiedDate
modifiedDate
createdBy
createdBy
modifiedBy
modifiedBy
-----------------------------------------------------------------------------------
------------------------------------------------------

Table:-----------:- app_properties
alt_key int primary key
module_name varchar not null
property_key varchar unique
property_value varchar not null
created_date Date null
modified_date Date null
created_by varchar
modified_by varchar
-----------------------------------------------------------------------------------
-----------------------------------------------------

AppResponseDto (AppProperies)
createProperties(List<AppProperiesDto)
AppResponseDto (List<AppProperies>) getProperties();
AppResponseDto (List<AppProperies>) getPropertiesByModule(String
moduleName)
AppResponseDto (AppProperies) getPropertiesByKey(String
propertyKey)

-----------------------------------------------------------------------------------
-----------------------------------------------------
Table:----------:- app_service

alt_key int primary key


service_name varchar unique
service_url varchar
status varchar
created_date Date
modified_date Date
-----------------------------------------------------------------------------------
--------------------------------------------------------

AppService AppServiceDto

altKey
serviceName serviceName
serviceUrl serviceUrl
status
createdDate
modifiedDate
-----------------------------------------------------------------------------------
--------------------------------------------------------

AppResponseDto (AppService) registerService(AppServiceDto appServiceDto)


AppResponseDto (AppService) getAppServiceByServiceName(String
serviceName);

-----------------------------------------------------------------------------------
--------------------------------------------------------

AppResponseDto

String status
String statusCode
String data
String error

-----------------------------------------------------------------------------------
----------------------------------------------------------

You might also like