Custom serialization
For most purposes, you will want to use Serverpod's native serialization. However, there may be cases where you want to serialize more advanced objects. With Serverpod, you can pass any serializable objects as long as they conform to three simple rules:
- Your objects must have a method called
toJson()
which returns a JSON serialization of the object.
Map<String, dynamic> toJson() {
return {
name: 'John Doe',
};
}
- There must be a constructor or factory called
fromJson()
, which takes a JSON serialization and a Serialization manager as parameters.
factory ClassName.fromJson(
Map<String, dynamic> json,
SerializationManager serializationManager,
) {
return ClassName(
name: json['name'] as String,
);
}
- You must declare your custom serializable objects in the
config/generator.yaml
file in the server project, the path needs to be accessible from both the server package and the client package.
...
extraClasses:
- package:my_project_shared/my_project_shared.dart:ClassName
Setup example
We recommend creating a new dart package specifically for sharing these types of classes and importing it into the server and client pubspec.yaml
. This can easily be done by running $ dart create -t package <my_project>_shared
in the root folder of your project.
Your folder structure should then look like this:
├── my_project_client
├── my_project_flutter
├── my_project_server
├── my_project_shared
Then you need to add the package serverpod_serialization
to get access to the SerializationManager
class.
$ cd my_project_shared
$ dart pub add serverpod_serialization
Then you need to update both your my_project_server/pubspec.yaml
and my_project_client/pubspec.yaml
and add the new package as a dependency.
dependencies:
...
my_project_shared:
path: ../my_project_shared
...
Now you can create your custom class in your new shared package:
import 'package:serverpod_serialization/serverpod_serialization.dart';
class ClassName {
String name;
ClassName(this.name);
toJson() {
return {
'name': name,
};
}
factory ClassName.fromJson(
Map<String, dynamic> jsonSerialization,
SerializationManager serializationManager,
) {
return ClassName(
jsonSerialization['name'],
);
}
}
After adding a new serializable class, you must run serverpod generate
. You are now able to use this class in your endpoints and leverage the full serialization/deserialization management that comes with Serverpod.
In your server project, you can create an endpoint returning your custom object.
import 'package:relation_test_shared/relation_test_shared.dart';
import 'package:serverpod/serverpod.dart';
class ExampleEndpoint extends Endpoint {
Future<ClassName> getMyCustomClass(Session session) async {
return ClassName(
'John Doe',
);
}
}
Custom object with Freezed
Serverpod also has support for using custom classes created with the Freezed package.
import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:serverpod_serialization/serverpod_serialization.dart';
part 'freezed_custom_class.freezed.dart';
part 'freezed_custom_class.g.dart';
class FreezedCustomClass with _$FreezedCustomClass {
const factory FreezedCustomClass({
required String firstName,
required String lastName,
required int age,
}) = _FreezedCustomClass;
factory FreezedCustomClass.fromJson(
Map<String, Object?> json,
SerializationManager serializationManager,
) =>
_$FreezedCustomClassFromJson(json);
}
In the config/generator.yaml, you declare the package and the class:
extraClasses:
- package:my_shared_package/my_shared_package.dart:FreezedCustomClass