공부집
java spring boot 에러
에러 Failure to transfer org.apache.maven~ 대응 1. 프로젝트 우클릭 → Run As → Maven Install 2. 탐색기에서 해당 프로젝트 클릭 후 F5 3. 프로젝트 우클릭→ Maven→ Update Project (force 옵션 체크) 에러 mybatis~ jar is missing 대응 mybatis 버전 적어줘야 함 http://mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure/ 에러 @service에서 null반환 대응 컨트롤러에도 필드에 @Autowired 추가 @Autowired private ArticleService articleService; 에러 대응
프로그래밍 요약정리/Java
2020. 5. 3. 22:27
펄 에러 (Insecure dependency in open while running setuid)
대처 my $command = shift; $command = $1 if $command =~ /(.*)/; $command = qx($command); 참조 https://perldoc.jp/docs/perl/5.26.1/perlsec.pod
프로그래밍 요약정리/Perl && 정규표현식
2020. 2. 21. 12:31