Warnning-The method getValue(String) from the type HttpSession is deprecated, The method putValue(String, Object) from the type HttpSession is deprecated

CODEDRAGON Development/JSP

반응형

 

 

경고 메시지

The method getValue(String) from the type HttpSession is deprecated, The method putValue(String, Object) from the type HttpSession is deprecated

Multiple annotations found at this line:

- The method getValue(String) from the type HttpSession is

 deprecated

- The method getValue(String) from the type HttpSession is

 deprecated

- The method getValue(String) from the type HttpSession is

 deprecated


 

The method putValue(String, Object) from the type HttpSession is deprecated


 

 

해경방법

Deprecated session.getValue() session.setValue() 메소드 대신 session.setAttribute() session.getAttribute()를 사용합니다.

session.getValue("name");

session.getAttribute("name ");

session.setAttribute("name ", "value")

session.putValue("name ", "value");

 

 

반응형