찾아보면 Ahnlab Safe Transaction 을 지우라고 하는데

 

나의 경우 아래 문제였다.

Pom.xml



<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>jpa-basic</groupId>
    <artifactId>jpa-01</artifactId>
    <version>1.0-SNAPSHOT</version>
    <properties>
        <maven.compiler.source>11</maven.compiler.source>
        <maven.compiler.target>11</maven.compiler.target>
        <hiberate.version>6.0.0.Final</hiberate.version>
        <querydsl.version>5.0.0</querydsl.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
            <version>${hiberate.version}</version>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-hikaricp</artifactId>
            <version>${hiberate.version}</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.28</version>
        </dependency>
        <dependency>
            <groupId>com.oracle.database.jdbc</groupId>
            <artifactId>ojdbc8</artifactId>
            <version>23.3.0.23.09</version>
        </dependency>
        <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-core</artifactId>
            <version>2.21.1</version>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.30</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.querydsl</groupId>
            <artifactId>querydsl-jpa</artifactId>
            <version>${querydsl.version}</version>
        </dependency>
        <dependency>
            <groupId>com.querydsl</groupId>
            <artifactId>querydsl-apt</artifactId>
            <version>${querydsl.version}</version>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>com.mysema.maven</groupId>
                <artifactId>apt-maven-plugin</artifactId>
                <version>1.1.3</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>process</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>target/generated-sources/java</outputDirectory>
                            <processor>
                                com.querydsl.apt.jpa.JPAAnnotationProcessor</processor>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

 

위와 같은 예외가 발생한다면, 아래와 같이 설정하면 된다.

 

 

 

 

 

 

 

https://notepad-plus-plus.org/downloads/v8.6/

 

Download Notepad++ v8.6: 20th-Year Anniversary | Notepad++

Download Notepad++ v8.6: 20th-Year Anniversary Release Date: 2023-11-23 Download 64-bit x64 Download 32-bit x86 Download ARM64 Download source code Download Notepad++ source code of current version and/or check sha-256 digests for binary packages on GitHub

notepad-plus-plus.org

 

 

드디어 다중편집이 완벽히 지원된다.

 

기존 문제점은 키보드로 멀티 커서를 생성하면, 이후 커서를 이동하면 바로 싱글 커서로 변환됐다.

이 문제로 키보드로 커서를 이동하고 싶은 경우  " ctrl + 좌클릭 " 으로 멀티 커서를 생성해야 했다. 그래야만 멀티 커서가 풀리지 않았다.

 

이제 그럴 필요가 없다!!!!

이제 편리하게 다중 편집을 사용할 수 있다.

 

sdkman 윈도우 설치 방법 설명

여기서 소개할 설치 방법은 것은 GIT Bash 방법이다.

사실 WSL 설치가 되어있어 시도했지만 잘 안됐다....

 

 

Git - Downloading Package

Download for Windows Click here to download the latest (2.39.1) 32-bit version of Git for Windows. This is the most recent maintained build. It was released 23 days ago, on 2023-01-17. Other Git for Windows downloads Standalone Installer 32-bit Git for Win

git-scm.com

git bash를 쓰기 위해 git을 설치한다. 64bit로 설치할 것을 권장

 

설치 후 아래 폴더경로로 이동한다.

 

 

GnuWin - Browse /zip/3.0 at SourceForge.net

Trusted by thousands of teams, Jira offers access to a wide range of tools for planning, tracking, and releasing world-class software, capturing and organizing issues, assigning work, and following team activity. It also integrates with leading developer t

sourceforge.net

 

위 사이트로 가서 아래 파일을 다운로드 한다.

압축파일에서 아래 zip.exe 파일을 복사한다.

앞서 열어두었던 폴더 위치에 붙여넣는다.

 

 

GnuWin - Browse /bzip2/1.0.5 at SourceForge.net

Trusted by thousands of teams, Jira offers access to a wide range of tools for planning, tracking, and releasing world-class software, capturing and organizing issues, assigning work, and following team activity. It also integrates with leading developer t

sourceforge.net

전과 같이 똑같이 복사 붙여넣기를 수행한다

 

 

Installation - SDKMAN! the Software Development Kit Manager

SDKMAN! is a tool for managing parallel versions of multiple Software Development Kits on most Unix based systems.

sdkman.io

위 사이트를 들어가서 윈도우 설치를 따라하면 된다. 

 

 

git bash를 관리자 권한으로 실행한다.

 

$ curl -s "https://get.sdkman.io" | bash
$ source "$HOME/.sdkman/bin/sdkman-init.sh"
$ sdk version
버전정보 출력 되면 성공

설치 명령어
sdk list java

성공!

 

 

 

 

 

 

 

+ Recent posts