반응형

─━ IT ━─ 439

파일 라인안에 앞에 내용 추가 / 맨뒤에 내용 추가 방법

1. 긴 라인으로 구성된 파일이 있을 때 각 라인마다 특정 단어를 라인의 맨 앞에 추가하고자 하는 경우 vi 편집기로 들어가서 해당 파일을 수정하여야 한다. vi test.txt 편집기 들어가 있는 상태에서 라인의 맨 앞에 삽입할 내용( aaa ) 를 다음과 같이 명령어로 입려 :%s/^/aaa/g 2. 라인의 맨 뒤에 특정 단어를 추가하고자 할 경우 vi test.txt :%s/$/aaa/g 이렇게 입력하면 aaa 라는 단어가 각 라인의 맨 앞 또는 뒤에 추가되는 것을 확인할 수 있다. [출처] 파일 라인안에 앞에 내용 추가 / 맨뒤에 내용 추가 방법|작성자 DKel

─━ IT ━─ 2018.06.07

'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ line , column

[INFO] Scanning for projects...[WARNING] [WARNING] Some problems were encountered while building the effective model for groupId:artifactId:packaging:0.0.1-SNAPSHOT[WARNING] 'build.plugins.plugin.version' for org.apache.maven.plugins:maven-source-plugin is missing. @ line 80, column 14[WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your b..

xmlns, xmlns:xsi 이란?

아래글 원문 웹페이지로 이동 xml에서 xmlns의 의미 xmlns="*"는 해당 애플리케이션이 실행되는 디렉토리에서 그 네임스페이스를 사용하 는 컴포넌트를 찾는다는 의미입니다. 만약 xmlns="ok.gosu.*"로 하고 아래에서 라고 하면 MyComp라는 컴포넌트를 /ok/gosu/MyComp.mxml (또는 MyComp.as)를 찾게 됩니다. 그냥 xmlns="*"로하면 현재 디렉토리에서 MyComp.mxml을 찾 겠죠. 아래글 원문 웹페이지로 이동 "xsi"는 "http://www.w3.org/2001/XMLSchema-instance"를 가리키는 접두어 스키마 문서는 네임스페이스(namespace)로 조직화된다: 모든 이름이 달린 스키마 구성 요소는 target namespace에 속하며, 그 ..

─━ IT ━─ 2016.10.27

[스프링] BeanFactory

* 빈 객체를 관리하고 각 빈 객체간의 의존 관계를 설정해 주는 기능을 제공하는 가장 단순한 컨테이너 * 구현 클래스 : org.springframework.beans.factory.xml.XmlBeanFactory * XmlBeanFactory는 외부 자원으로부터 설정 정보를 읽어 와 빈 객체를 생성 (ex. xml파일) * org.springframework.core.io.Resource 인터페이스를 사용하여 다양한 종류의 자원을 동일한 방식으로 표현할 수 있음. Resource resource = new FileSystemResource("beans.xml"); XmlBeanFactory factory = new XmlBeanFactory(resource); AgentService agent = (..

반응형