这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1.5 KiB

LINGYUN.Abp.LocalizationManagement.Domain

The domain layer module for localization management, implementing dynamic localization resource storage and management functionality.

Features

  • Implements ILocalizationStore interface for localization resource storage and retrieval
  • Supports language management (CRUD operations)
  • Supports resource management (CRUD operations)
  • Supports text management (CRUD operations)
  • Supports in-memory caching of localization resources
  • Supports distributed cache synchronization

Module Dependencies

[DependsOn(typeof(AbpLocalizationManagementDomainModule))]
public class YouProjectModule : AbpModule
{
  // other
}

Configuration

{
  "LocalizationManagement": {
    "LocalizationCacheStampTimeOut": "00:02:00",  // Localization cache timestamp timeout, default 2 minutes
    "LocalizationCacheStampExpiration": "00:30:00" // Localization cache expiration time, default 30 minutes
  }
}

Domain Services

  • LanguageManager: Language management service, providing language creation, update, deletion, etc.
  • ResourceManager: Resource management service, providing resource creation, update, deletion, etc.
  • TextManager: Text management service, providing text creation, update, deletion, etc.
  • LocalizationStore: Localization storage service, implementing the ILocalizationStore interface
  • LocalizationStoreInMemoryCache: In-memory cache service for localization resources

More Information