diff --git a/core/lib/Drupal/Core/Entity/Entity.php b/core/lib/Drupal/Core/Entity/Entity.php
index 54051a6..d9a4e68 100644
--- a/core/lib/Drupal/Core/Entity/Entity.php
+++ b/core/lib/Drupal/Core/Entity/Entity.php
@@ -275,7 +275,7 @@ public function getIterator() {
   public function access($operation = 'view', AccountInterface $account = NULL) {
     return \Drupal::entityManager()
       ->getAccessController($this->entityType)
-      ->access($this, $operation, Language::LANGCODE_DEFAULT, $account);
+      ->access($this, $operation, $this->language()->id, $account);
   }
 
   /**
diff --git a/core/modules/node/lib/Drupal/node/Controller/NodeViewController.php b/core/modules/node/lib/Drupal/node/Controller/NodeViewController.php
new file mode 100644
index 0000000..0142e2c
--- /dev/null
+++ b/core/modules/node/lib/Drupal/node/Controller/NodeViewController.php
@@ -0,0 +1,57 @@
+<?php
+/**
+ * @file
+ * Contains \Drupal\node\Controller\NodeController
+ */
+
+namespace Drupal\node\Controller;
+
+use Drupal\Core\Controller\ControllerInterface;
+use Drupal\node\NodeInterface;
+use Symfony\Component\DependencyInjection\ContainerInterface;
+
+/**
+ * Controller routines for nodes.
+ */
+class NodeViewController implements ControllerInterface {
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function create(ContainerInterface $container) {
+    return new static();
+  }
+
+  /**
+   * Page callback: Displays a single node.
+   *
+   * @param \Drupal\node\NodeInterface $node
+   *   The node entity.
+   *
+   * @return array
+   *   A page array suitable for use by drupal_render().
+   *
+   * @see node_menu()
+   */
+  public function render(NodeInterface $node) {
+
+    // If there is a menu link to this node, the link becomes the last part
+    // of the active trail, and the link name becomes the page title.
+    // Thus, we must explicitly set the page title to be the node title.
+    drupal_set_title($node->label());
+    $uri = $node->uri();
+    // Set the node path as the canonical URL to prevent duplicate content.
+    drupal_add_html_head_link(array(
+      'rel' => 'canonical',
+      'href' => url($uri['path'], $uri['options'])
+    ), TRUE);
+    // Set the non-aliased path as a default shortlink.
+    drupal_add_html_head_link(array(
+      'rel' => 'shortlink',
+      'href' => url($uri['path'], array_merge($uri['options'], array('alias' => TRUE)))
+    ), TRUE);
+
+    return node_show($node);
+  }
+
+}
diff --git a/core/modules/node/node.module b/core/modules/node/node.module
index 9d9d48f..0d962ff 100644
--- a/core/modules/node/node.module
+++ b/core/modules/node/node.module
@@ -1321,14 +1321,7 @@ function node_menu() {
     'file' => 'node.pages.inc',
   );
   $items['node/%node'] = array(
-    'title callback' => 'node_page_title',
-    'title arguments' => array(1),
-    // The page callback also invokes drupal_set_title() in case
-    // the menu router's title is overridden by a menu link.
-    'page callback' => 'node_page_view',
-    'page arguments' => array(1),
-    'access callback' => 'node_access',
-    'access arguments' => array('view', 1),
+    'route_name' => 'node_view',
   );
   $items['node/%node/view'] = array(
     'title' => 'View',
@@ -1404,21 +1397,6 @@ function node_menu_local_tasks(&$data, $router_item, $root_path) {
 }
 
 /**
- * Title callback: Displays the node's title.
- *
- * @param \Drupal\Core\Entity\EntityInterface $node
- *   The node entity.
- *
- * @return
- *   An unsanitized string that is the title of the node.
- *
- * @see node_menu()
- */
-function node_page_title(EntityInterface $node) {
-  return $node->label();
-}
-
-/**
  * Finds the last time a node was changed.
  *
  * @param $nid
@@ -1804,37 +1782,6 @@ function node_view_multiple($nodes, $view_mode = 'teaser', $langcode = NULL) {
 }
 
 /**
- * Page callback: Displays a single node.
- *
- * @param \Drupal\Core\Entity\EntityInterface $node
- *   The node entity.
- *
- * @return
- *   A page array suitable for use by drupal_render().
- *
- * @see node_menu()
- */
-function node_page_view(EntityInterface $node) {
-  // If there is a menu link to this node, the link becomes the last part
-  // of the active trail, and the link name becomes the page title.
-  // Thus, we must explicitly set the page title to be the node title.
-  drupal_set_title($node->label());
-
-  foreach ($node->uriRelationships() as $rel) {
-    $uri = $node->uri($rel);
-    // Set the node path as the canonical URL to prevent duplicate content.
-    drupal_add_html_head_link(array('rel' => $rel, 'href' => url($uri['path'], $uri['options'])), TRUE);
-
-    if ($rel == 'canonical') {
-      // Set the non-aliased canonical path as a default shortlink.
-      drupal_add_html_head_link(array('rel' => 'shortlink', 'href' => url($uri['path'], array_merge($uri['options'], array('alias' => TRUE)))), TRUE);
-    }
-  }
-
-  return node_show($node);
-}
-
-/**
  * Implements hook_update_index().
  */
 function node_update_index() {
diff --git a/core/modules/node/node.routing.yml b/core/modules/node/node.routing.yml
index 9204a2b..125525e 100644
--- a/core/modules/node/node.routing.yml
+++ b/core/modules/node/node.routing.yml
@@ -47,3 +47,11 @@ node_type_delete_confirm:
     _entity_form: 'node_type.delete'
   requirements:
     _entity_access: 'node_type.delete'
+
+node_view:
+  pattern: '/node/{node}'
+  defaults:
+    _content: '\Drupal\node\Controller\NodeViewController::render'
+  requirements:
+    _entity_access: 'node.view'
+    node: \d+
