try {
String appId = request.getParameterValues("__a_")[0];
String uId = request.getParameterValues("__u_")[0];
if (!appId.isEmpty() && !uId.isEmpty()) {
UserviewService userviewService = (UserviewService) appContext.getBean("userviewService");
UserviewTheme theme = userviewService.getUserviewTheme(appId, uId);
if (theme != null && theme.getCss() != null) {
return theme.getCss();
}
}