All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kotlin-spring.apiUtil.mustache Maven / Gradle / Ivy

The newest version!
package {{apiPackage}}

{{^reactive}}
import org.springframework.web.context.request.NativeWebRequest

import javax.servlet.http.HttpServletResponse
import java.io.IOException
{{/reactive}}

object ApiUtil {
{{^reactive}}
    fun setExampleResponse(req: NativeWebRequest, contentType: String, example: String) {
        try {
            val res = req.getNativeResponse(HttpServletResponse::class.java)
            res.setCharacterEncoding("UTF-8")
            res.addHeader("Content-Type", contentType)
            res.getWriter().print(example)
        } catch (e: IOException) {
            throw RuntimeException(e)
        }
    }
{{/reactive}}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy