Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- java error
- spring
- Exception
- apache gzip
- release Apk
- tomcat
- jQuery
- CSS사용법
- fragment
- Firebase
- error
- Android Apk 이름
- MySQL
- html
- Java
- Eclipse
- Android Apk 이름 변경
- android error
- Android Apk
- Program type already present
- R프로그래밍
- FLUTTER
- DataTable
- release unsigned
- Kotlin
- JavaScript
- css
- 안드로이드
- Android
- android fragment
Archives
- Today
- Total
목록error (2)
selfstarter
Android Error NotFoundException String resource ID
Android Error NotFoundException String resource ID Error NotFoundException: String resource ID #0xdac Cause setText할 때 넣는 인자가 String이 아니다 Solution modify Code holder.textView2.setText(itemListData.getMoney()); to holder.textView2.setText(Integer.toString(itemListData.getMoney()));
App/Android
2020. 5. 6. 14:56
Invalid bound statement error 해결
error message org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): mapper pakage Issue BaseMapper에 bean 등록을 하고 mapper를 통해서 쿼리문을 날려 원하는 값을 가져오는 예제를 실행시킴. 그런데 자꾸 Invalid bound statement 에러가 뜸 code @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = { com.base.server.comm.config.RootConfig.class }) public class selectTest { @Setter(onMethod\_ = @Autow..
Server/Spring
2019. 7. 10. 15:53