私のコントローラーで:
UserResource.find({ userId: userId }, function (records) {
                            $scope.user= records;
                        });
私のリソースでは:
angular.module("main_k").
    factory("main_k.service.resource.Order", ["$resource", function ($resource) {
        return $resource("../rest/user/:action?:identification", {
            action: "@userId",
            identification: "identification51854"
        }, { find: { method: "GET"}
     });
    }]);
問題は、userId が入力されるのではなく、URL に追加されて動作することです。身分証明書は正しく記入されています。userId 値を渡すために何が間違っていますか?