準備
Dartのインストール
$ brew tap dart-lang/dart
$ brew install dart
Aqueductのインストール
$ pub global activate aqueduct
$ export PATH="$PATH":"$HOME/.pub-cache/bin" # shellファイルに追加
プロジェクトの作成
$ aqueduct create my_project
チュートリアル
チュートリアルプロジェクトの作成
$ aqueduct create heroes
ヒーロー一覧のエンドポイント
lib/controller/heroes_controller.dartを作成
import 'package:aqueduct/aqueduct.dart';
import 'package:heroes/heroes.dart';
class HeroesController extends Controller {
final _heroes = [
{'id': 11, 'name': 'Mr. Nice'},
{'id': 12, 'name': 'Narco'},
{'id': 13, 'name': 'Bombasto'},
{'id': 14, 'name': 'Celeritas'},
{'id': 15, 'name': 'Magneta'},
];
@override
Future<RequestOrResponse> handle(Request request) async {
return Response.ok(_heroes);
}
}
lib/channel.dartを修正
import 'heroes.dart';
+ import 'controller/heroes_controller.dart';
/// This type initializes an application.
///
/// Override methods in this class to set up routes and initialize services like
/// database connections. See http://aqueduct.io/docs/http/channel/.
class HeroesChannel extends ApplicationChannel {
/// Initialize services in this method.
///
/// Implement this method to initialize services, read values from [options]
/// and any other initialization required before constructing [entryPoint].
///
/// This method is invoked prior to [entryPoint] being accessed.
@override
Future prepare() async {
logger.onRecord.listen((rec) => print("$rec ${rec.error ?? ""} ${rec.stackTrace ?? ""}"));
}
/// Construct the request channel.
///
/// Return an instance of some [Controller] that will be the initial receiver
/// of all [Request]s.
///
/// This method is invoked after [prepare].
@override
Controller get entryPoint {
final router = Router();
+
+ router
+ .route('/heroes')
+ .link(() => HeroesController());
// Prefer to use `link` instead of `linkFunction`.
// See: https://aqueduct.io/docs/http/request_controller/
router
.route("/example")
.linkFunction((request) async {
return Response.ok({"key": "value"});
});
return router;
}
}
サーバーを起動
$ aqueduct serve
http://localhost:8888/heroes で結果が確認できる