일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- DELETE
- 아이튠즈
- 색상 변경
- 삭제버튼
- beanCreationException
- mysql
- Drawer
- bash
- 단축키
- Exception
- command not found
- Query
- sqlSession
- api19
- itunes
- KVO
- mybatis
- backspace
- Cluster
- googlemap
- KVO_IS_RETAINING_ALL_OBSERVERS_OF_THIS_OBJECT_IF_IT_CRASHES_AN_OBSERVER_WAS_OVERRELEASED_OR_SMASHED
- UITextField
- Detect
- delete button
- 실행
- NoClassDefFoundError
- IPA
- color
- 삭제
- dataSource
- Today
- Total
목록내맘대로 프로그래밍/Server (2)
BlueAroma
[ERROR] org.springframework.beans.factory.BeanCreationException 에러. 첫 서버 공부 중 context-datasource.xml / context-mapper.xml sample_SQL.xml 만들어 서버를 실행시키려 하니 익셉션의 발생. Property 'dataSource' threw exception; nested exception is java.lang.NoClassDefFoundErrororg.springframework.beans.factory.BeanCreationException:Error creating bean with name 'sqlSession' defined 이 발생하였다. 아주 초보적인 실수인데 초보라.. ( :ㅁ ) 엄청 해..
잊지않기 위해 정리... mysql 실행 시 -bash: mysql: command not found mysql 실행 할때 mysql command를 찾을 수 없기 때문에 나오는 에러. mysql 의 명령어 경로 (/usr/local/mysql/bin) 를 환경변수로 지정하지 않은 경우 bin폴더 외부에서 명령어를 호출하면 발생한다. 환경변수를 지정하고 싶지 않은 경우는 /usr/local/mysql/bin 로 이동하여 ./mysql ... 으로 실행하면 된다. 서버 폴더 내 어디서든 mysql 명령어를 실행하길 원한다면 아래와 같이 설정한다. $ cd /etc$ sudo vi profile ( 권한 필요 ) profile 정보 맨 하단으로 이동하여 export DB_HOME=/usr/local/mysq..