字符串反向引用在 GXT 服务器模式下不起作用,但在 GXT 开发模式下起作用

String back referencing is not working in GXT server mode but works in GXT dev mode

我有下面的代码,可以在 GXT 开发模式下完美运行。但它不能在 GXT 服务器模式下工作。你能帮我解决这个问题吗?

String stringValue = "Servicing";
if (stringValue != null && !stringValue.isEmpty()) {
    String newData = stringValue.replaceAll("(?i)servi", "<mark>[=10=]</mark>");
    System.out.println(newData);
}

您必须使用 GXT 的 RegExp 和 Matcher 才能使其在服务器模式下工作。