尝试执行我的代码时出现以下错误
--- Check the Segment.getVirtualSegmentId.
--- Check the SQL statement.
--- Cause: java.util.NoSuchElementException
(但是该方法确实存在并且查询在 SQL Developer 中正确运行),重新部署 tomcat 就可以了,但是过了一段时间又没有更改代码中的任何内容,上述错误已被抛出。
引发错误的代码是
<select id="getVirtualSegmentId" resultClass="java.lang.String" >
select max(substr(attr_value,instr(attr_value, '-')+1))
from circ_inst inner join circ_attr_settings
on circ_inst.circ_inst_id=circ_attr_settings.circ_inst_id and val_attr_inst_id=1045
where REGEXP_LIKE (circ_attr_settings.attr_value, 'LAYER 2 SWITCH-[0-9]+$') or
REGEXP_LIKE (circ_attr_settings.attr_value, 'IPANEMA-[0-9]+$') or
REGEXP_LIKE (circ_attr_settings.attr_value, 'FIREWALL-[0-9]+$')
</select>