아래 내용을 추가하고 mvn packge 를 해보자.
1
2
3
4
5 |
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
|
cs |
스프링 부트이기 때문에 버전은 입력하지 않아도 된다
build 부분은 아래처럼 작성하면 된다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 |
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.example.postgresdemo.PostgresDemoApplication</mainClass>//메인 클래스 위치
<addClasspath>true</addClasspath>
<addExtensions>true</addExtensions>
<packageName>com.example.postgresdemo</packageName>//메인 클래스가 있는 패키지 이름
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build> |
cs |
'Spring Framework' 카테고리의 다른 글
PropertyReferenceException: No property xx for type yy 에러 해결 (0) | 2018.11.26 |
---|---|
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' 에러 해결 (1) | 2018.11.25 |
스프링 부트 manifest 를 찾을 수 없습니다. 에러 해결 (0) | 2018.11.23 |
스프링 부트 타임리프 단순 반복문 (for 문) 쓰는 방법 (0) | 2018.11.23 |
thymeleaf 타임리프 <a href=javascript 함수에 값 전달하는 방법> </a> (0) | 2018.11.23 |
댓글