# Mapping DSL Examples

```javascript
mapPath("path")
mapDSL("cool", "model.CoolFactory");

map("SecurityService")
    .to("model.security.SecurityService")
    .onDICOmplete(["start","executeRoles"])

mapDirectory('/shared/model');

 // Eager initialized objects
map("luis,joe").to("model.Luis").into(this.SCOPES.SINGLETON).asEagerInit()
map(["luis","joe"]).to("model.Luis").into(this.SCOPES.SINGLETON).asEagerInit()

// map a property to a mapping id via DSL
map("Lui").toDSL("coldbox:setting:luis")

// using initWith() for passing name-value pairs or positional arguments for direct initialization of a mapping
map("transferConfig")
    .to("transfer.com.config.Configuration")
    .initWith(datasourcePath=getProperty('datasourcePath'),
           configPath=getProperty('configPath'),
          definitionPath=getProperty('definitionPath'));

// Now doing with setter injection
map("transferConfig")
    .to("transfer.com.config.Configuration")
    .setter(name="datasourcePath", value=getProperty("datasourcePath"))
    .setter(name="configPath", value=getProperty("datasourcePath"))
    .setter(name="definitionPath", value=getProperty("definitionPath") );


// Map with constructor arguments
map("transfer")
    .to("transfer.com.Transfer")
    .into(SCOPES.SINGLETON)
    .noAutowire()
    .asEagerInit()
    .initArg(name="configuration",ref='transferConfig');  //ref = name by default, or have an explicit name

// RSS Integration With Caching.
map("googleNews")
    .toRSS("http://news.google.com/news?pz=1&ned=us&hl=en&topic=h&num=3&output=rss")
    .asEagerInit()
    .inCacheBox(timeout=20,lastAccessTimeout=30,provider="default",key="google-news");

// Java Integration with init arguments
map("Buffer").
    toJava("java.lang.StringBuffer").
    initArg(value="500",javaCast="long");

// Java integration with initWith() custom arguments and your own casting.
map("Buffer").
    toJava("java.lang.StringBuffer").
    initWith( javaCast("long",500) );
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wirebox.ortusbooks.com/2/configuration/mapping-dsl/mapping-dsl-examples.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
