0

enter image description here

public String getVersion() {
            return (String) em.createNativeQuery("SELECT pkg_deploy.get_current_build FROM dual").getSingleResult();
        }

The Sonar complain about not using native queries. In this case, what do I need to change? Should I use JPQL, how?

4

1 回答 1

0

使用本机查询非常好,并且在像您这样的某些情况下,这是运行此查询的唯一方法。

您应该继续根据您的需要调整 SonarQube 规则。

于 2021-11-15T15:52:56.940 回答