java.util.NoSuchElementException

时间:2012-08-14 11:06:31

标签: java sql tomcat6

尝试执行代码时出现以下错误

--- 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>

1 个答案:

答案 0 :(得分:0)

我可以通过从查询中删除“+ $”来避免异常。感谢大家的回复