[문제]

jsp파일을 실행시켰는데 500에러가 떴음. 

root cause에 org.springframework.beans.factory.UnsatisfiedDependencyException 라고 쓰여있었음.

[해결]

1. HTTP Status 500에러가 뜨면 먼저 root cause에서 뱉는 오류를 확인.

2. Error creating bean with name 'userController': Unsatisfied dependency expressed through field 'codeService';라는 문제 발견.

3. 서비스메소드 부분에 @Service를, 참조객체 부분에 @Autowired를 붙여주면서 해결함.

 

root cause에서 알려주는 오류내용을 확인한다.

 

어노테이션을 붙여주면서 문제 해결.

[문제]

NumberFormat.getInstance().format( vo.getPrice() )

vo.getPrice() 로 받아오는 것은 스트링(String)이어서 오류가 났던 것. (500에러를 만남)

[해결]

NumberFormat.getInstance().format( Integer.ParseInt(vo.getPrice()) )

형태로 Int로 한 번 더 변환해줘야 한다.

 

이런 식으로 금액에 천단위마다 쉼표를 주고 싶었다.

NumberFormat.getInstance().format( 금액 or 금액 받아올 것 ) 을 이용하려고 했다.

 

그래서 이렇게 적으니 500에러가 났다.

 

 

 

 

이렇게 적어 오류가 해결되었다.

+ Recent posts