---
lang: en
title: 'API docs: core.application.controller'
keywords: LoopBack 4.0, LoopBack 4
sidebar: lb4_sidebar
editurl: https://github.com/strongloop/loopback-next/tree/master/packages/core
permalink: /doc/en/lb4/apidocs.core.application.controller.html
---

<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@loopback/core](./core.md) &gt; [Application](./core.application.md) &gt; [controller](./core.application.controller.md)

## Application.controller() method

Register a controller class with this application.

<b>Signature:</b>

```typescript
controller<T>(controllerCtor: ControllerClass<T>, name?: string): Binding<T>;
```

## Parameters

|  Parameter | Type | Description |
|  --- | --- | --- |
|  controllerCtor | <code>ControllerClass&lt;T&gt;</code> | The controller class (constructor function). |
|  name | <code>string</code> | Optional controller name, default to the class name |

<b>Returns:</b>

`Binding<T>`

The newly created binding, you can use the reference to further modify the binding, e.g. lock the value to prevent further modifications.

## Example


```ts
class MyController {
}
app.controller(MyController).lock();

```


