2024의 게시물 표시

클릭한 줄 없애기 jquery

  $ ( 'button[name="cancel_btn"] ' ). on ( 'click' , function (){ $ ( this ). parent (). remove ( 'li' ); // $("#phone_list").remove('li') console . log ( "///////" + dd ) })

이클립스 퀴리 보기 죽이기

<!-- ================ 쿼리 로그 보이기Start====================== --> <!-- <bean id="dataSourceSpied" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="${jdbc.driver}"></property> <property name=" url " value="${jdbc.url}"></property> <property name=" username " value="${jdbc.username}"></property> <property name="password" value="${jdbc.password}"></property> <property name="validationQuery" value="select 1"/> </bean> <bean id="dataSource" class="net.sf.log4jdbc.Log4jdbcProxyDataSource"> <constructor-arg ref ="dataSourceSpied" /> <property name="logFormatter"> <bean class="net.sf.log4jdbc.tools.Log4JdbcCustomFormatter"> <property name=...

BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 65 해결 방법 찾기

 Launching lib\main.dart on sdk gphone64 x86 64 in debug mode... Running Gradle task 'assembleDebug'... FAILURE: Build failed with an exception. * Where: Settings file 'D:\android\testApp\android\settings.gradle' line: 11 * What went wrong: A problem occurred evaluating settings 'android'. > Could not open dsl generic class cache for script 'C:\flutter\packages\flutter_tools\gradle\app_plugin_loader.gradle' (C:\Users\mycom20\.gradle\caches\7.5\scripts\99ckx1rbgkr7yjkhzpywa5fpg).    > BUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 65 * Try: > Run with --stacktrace option to get the stack trace. > Run with --info or --debug option to get more log output. > Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 1s ┌─ Flutter Fix ───────────────────────────────────────────────────────────────────────────────────┐ │ [!] You...

flutter 초기 시작

 flutter 다운로드 환경 변수 세팅 flutter doctor C:\flutter\bin\flutter.bat doctor --verbose [√] Flutter (Channel stable, 3.24.4, on Microsoft Windows [Version 10.0.19045.5011], locale ko-KR)     • Flutter version 3.24.4 on channel stable at C:\flutter     • Upstream repository https://github.com/flutter/flutter.git     • Framework revision 603104015d (3 weeks ago), 2024-10-24 08:01:25 -0700     • Engine revision db49896cf2     • Dart version 3.5.4     • DevTools version 2.37.3 [√] Windows Version (Installed version of Windows is version 10 or higher) [!] Android toolchain - develop for Android devices (Android SDK version 34.0.0)     • Android SDK at C:\Users\mycom20\AppData\Local\Android\sdk     X cmdline-tools component is missing       Run `path/to/sdkmanager --install "cmdline-tools;latest"`       See https://developer.android.com/studio/command-line for more details.   ...

mysql 전각문자 반각으로 변환

함수가 없다 1.  ORD : 아스키 코드 값을 반환하는 함수 변환 한다.  2. 전각과 반각 차이  15711328 이다   SELECT cast ( char ( ord ( '9' )- 15711328 ) as char ) ;

서버에서 이미지 캔버스 사용 변환시

이미지
  톰캣의 catalina.sh 수정 cd /server/tomcat8/bin vi catalina.sh CATALINA_OPTS="$CATALINA_OPTS $JPDA_OPTS" shift fi CATALINA_OPTS="$CATALINA_OPTS -Djava.awt.headless=true" // 이 부분(1줄)을 추가한다 if [ "$1" = "debug" ] ; then if $os400; then echo "Debug command not available on OS400" exit 1 else shift 삽입 위치도 중요 하다. 이것은 일종의 JDK의 버그이다. 원인은 자바가 BufferedImage 를 생성하고 실제로 Graphics 객체를 얻어오기 위해 getGraphics나 createGraphics 메소드를 부를때, 실제로 display하거나 mouse, keyboard 자원을 하나도 쓰지 않을 것임에도 불구하고 내부적으로 AWT Toolkit이 그것들에 대한 자원을 얻어오게 되어있었기 때문이다.  출처: https://soye0n.tistory.com/67 [코린이의 기록:티스토리] 참조 : https://dbility.com/entry/linux-%ED%99%98%EA%B2%BD-java-Graphics2D-%EC%83%9D%EC%84%B1%EC%9D%B4-%EC%95%88%EB%90%A0-%EB%95%8C

jsonp java 구현시 jQuery was not called 나오는 경우

 호출 하는 곳  function checkBal (){ var url = "http://1.1.1.1/Search/check?callback=?" $ . ajax ({ url: url , type : "GET" , dataType: "jsonp" , data: { 'id': 'test' }, jsonpCallback: "callback" , success: function ( data ) { console . log ( 'callback success' ); }, error: function ( request , status , error ){ console . log ( "code:" + request . status + "\n" + "message:" + request . responseText + "\n" + "error:" + error ); } }) 서버쪽 @RequestMapping ( value = "/check" , method = RequestMethod . GET ) @ResponseBody public void request ( @RequestParam String spcBizNo , @RequestParam String callback , HttpServletResponse response ) throws IOException { Map < String , String > paramMap = new HashMap < String , String > () ; ...

Server Tomcat v8.5 Server at localhost failed to start.

이미지
  출처: https://beagle-dev.tistory.com/76 [언젠간 되어있겠지:티스토리]

No editor descriptor for id org.eclipse.wst.jsdt.ui.CompilationUnitEditor 증상 해결 방법

이미지
 No editor descriptor for id org.eclipse.wst.jsdt.ui.CompilationUnitEditor clean and build  다시 JS 파일을 오픈한다