Can a CSS file be created from a string data retrieved from the controller class in my application? I am working on a JSP page and need to access a CSS variable like this:
<link rel="stylesheet" type="text/css" href="/Style/css=${css}" />
The "Style" method in the controller class is responsible for returning a CSS string variable. The issue I am facing is that when I display it on the JSP page, it appears as plain text rather than rendering as a CSS file. Is there a way to convert this string into an actual CSS file?