Our effort to build WS Human Task implementation was donated to The Apache Software Foundation. Proposal can be seen here. Apache HISE Project page contains up to date information.
Our effort to build WS Human Task implementation was donated to The Apache Software Foundation. Proposal can be seen here. Apache HISE Project page contains up to date information.
grails create-filters info.rnowak.App.Basket
class BasketFilters {
def filters = {
all(controller:'*', action:'*') {
before = {
}
after = { Map model ->
}
afterView = { Exception e ->
}
}
}
}
All we need to do is fill empty closures, modify filter properties and put some data into MDC.class BasketFilters {
def filters = {
basketFilter(controller:'*', action:'*') {
before = {
MDC.put("basketNumber", params.basketNumber ?: "")
}
after = { Map model ->
MDC.remove("basketNumber")
}
}
}
}
def conversionPattern = "%d{yyyy-MM-dd HH:mm:ss} %-5p %t [%c{1}] %X{basketNumber} - %m%n"