Programming/Java(Spring)2019. 6. 5. 22:25

openJDK-11 이 깔려서 생기는 문제..

라고 하는데, 경고라서 무시해도 되려나?

일단 openJDK-8-jre를 설치하니 경고가 없이 실행된다.

 

[링크 :https://okky.kr/article/487270]

'Programming > Java(Spring)' 카테고리의 다른 글

tomcat 자동 war 배포 막기  (0) 2019.06.07
tomcat manager GUI  (0) 2019.06.07
spring에 angluar 통합하기  (0) 2019.06.04
spring war와 war.original  (0) 2019.04.23
java app 메모리 상태 확인하기  (0) 2019.04.18
Posted by 구차니
Programming/Java(Spring)2019. 6. 4. 14:47

머.. spring 이라는 놈은 java 로 만든 웹 프레임 워크 겸 웹 서버니까

ng build 등으로 생성된 static 파일을 넣어 주면 되는거고

 

src/main/resources/static 에 넣어주면 되는 듯

[링크 : https://studystorage.blogspot.com/2017/01/spring-angular2.html]

Posted by 구차니
Programming/Java(Spring)2019. 4. 23. 10:19

maven 에서 repackging 이라는걸로 인해서 이렇게 바뀐다는데

file로 보면 war는 data과 war.original은 zip archive data 라고 되어있는데 무슨 차이인지 감이 안오네..

 

The answer is that you are using repackage goal in your spring-boot-maven-plugin. So, What it does?

Maven first builds your project and packages your classes and resources into a WAR (${artifactId}.war) file.

Then, repackaging happens. In this goal, all the dependencies mentioned in the pom.xml are packaged inside a new WAR (${artifactId}.war) and the previously generated war is renamed to ${artifactId}.war.original.

[링크 : https://stackoverflow.com/.../why-spring-boot-generate-jar-or-war-file-with-original-extention/43641913]

[링크 : https://docs.spring.io/spring-boot/docs/current/reference/html/build-tool-plugins-maven-plugin.html]

 

[링크 : http://repackage.org/]

 

Repackages existing JAR and WAR archives so that they can be executed from the command line using java -jar. With layout=NONE can also be used simply to package a JAR with nested dependencies (and no main class, so not executable).

[링크 : https://docs.spring.io/spring-boot/docs/current/maven-plugin/repackage-mojo.html]

 

[링크 : https://preamtree.tistory.com/69]

Posted by 구차니
Programming/Java(Spring)2019. 4. 18. 10:30

jcmd

[링크 : https://docs.oracle.com/javase/10/tools/jcmd.htm]

 

# jcmd --help
Error parsing arguments: No command specified

Usage: jcmd  PerfCounter.print|-f file>
   or: jcmd -l
   or: jcmd -h

  command must be a valid jcmd command for the selected jvm.
  Use the command "help" to see which commands are available.
  If the pid is 0, commands will be sent to all Java processes.
  The main class argument will be used to match (either partially
  or fully) the class used to start Java.
  If no options are given, lists Java processes (same as -p).

  PerfCounter.print display the counters exposed by this process
  -f  read and execute commands from the file
  -l  list JVM processes on the local machine
  -h  this help

 

근데 보는법을 모르겠다 ㅠㅠ

# jcmd 10776 help
10776:
The following commands are available:
JFR.stop
JFR.start
JFR.dump
JFR.check
VM.native_memory
VM.check_commercial_features
VM.unlock_commercial_features
ManagementAgent.stop
ManagementAgent.start_local
ManagementAgent.start
VM.classloader_stats
GC.rotate_log
Thread.print
GC.class_stats
GC.class_histogram
GC.heap_dump
GC.finalizer_info
GC.heap_info
GC.run_finalization
GC.run
VM.uptime
VM.dynlibs
VM.flags
VM.system_properties
VM.command_line
VM.version
help

For more information about a specific command use 'help 

'.

# jcmd 10776 GC.heap_info
10776:
 PSYoungGen      total 192512K, used 187956K [0x00000000ec400000, 0x00000000f8300000, 0x0000000100000000)
  eden space 189952K, 98% used [0x00000000ec400000,0x00000000f7a0d258,0x00000000f7d80000)
  from space 2560K, 60% used [0x00000000f7d80000,0x00000000f7f00000,0x00000000f8000000)
  to   space 2560K, 0% used [0x00000000f8080000,0x00000000f8080000,0x00000000f8300000)
 ParOldGen       total 647168K, used 591782K [0x00000000c4c00000, 0x00000000ec400000, 0x00000000ec400000)
  object space 647168K, 91% used [0x00000000c4c00000,0x00000000e8de99b8,0x00000000ec400000)
 Metaspace       used 107438K, capacity 109826K, committed 110336K, reserved 1146880K
  class space    used 13031K, capacity 13457K, committed 13568K, reserved 1048576K

[링크 : http://karunsubramanian.com/websphere/how-to-monior-heap-usage-of-a-java-application/]

 

+

GPL 이라는데 상용으로 사용가능한지 모르겠음

[링크 : https://visualvm.github.io/]

 

 

+

클래스 히스토그램은.. 클래스별 메모리 사용량인가?

# jcmd 10776 GC.class_histogram
10776:

 num     #instances         #bytes  class name
----------------------------------------------
   1:        150865      436535528  [C
   2:          7008       47125920  [B
   3:        134955        4318560  java.util.concurrent.ConcurrentHashMap$Node
   4:        145517        3492408  java.lang.String
   5:         11226        3398488  [I

 

찾다보니 jmap -histo pid도 동일한 결과를 내주네..

[링크 : http://www.openkb.info/2014/06/how-to-check-java-memory-usage.html]

 

일단 의미를 보건대.. [C는 Char array 라는 느낌인데

무슨 미친 char 배열 객체가 이렇게 메모리를 쳐드시나...

Element Type        Encoding
boolean             Z
byte                B
char                C
class or interface  Lclassname;
double              D
float               F
int                 I
long                J
short               S 

 

it is an array of objects as specified by JVM Specifications for internal representation of class names:

  • a single [ means an array of
  • L followed by a fully qualified class name (e.g. java/lang/Object) is the class name terminated by semicolon ;

so [Ljava.lang.object; means Object[]

[링크 : https://stackoverflow.com/.../what-do-those-strange-class-names-in-a-java-heap-dump-mean]

 

+

[링크 : https://spring.io/blog/2015/12/10/spring-boot-memory-performance]

Posted by 구차니
Programming/Java(Spring)2019. 3. 25. 17:00

아래와 같은 에러가 발생해서 찾는 중

org.springframework.orm.jpa.JpaSystemException: Transaction was marked for rollback only; cannot commit; nested exception is org.hibernate.TransactionException: Transaction was marked for rollback only; cannot commit


먼 소리인지 눈에도 안들어 오는데 어떻게 해야하려나.. ㅠㅠ

[링크 : http://woowabros.github.io/experience/2019/01/29/exception-in-transaction.html]

'Programming > Java(Spring)' 카테고리의 다른 글

spring war와 war.original  (0) 2019.04.23
java app 메모리 상태 확인하기  (0) 2019.04.18
spring boot cassandra  (0) 2019.03.08
gradle 에 jar 추가하여 빌드하기  (0) 2019.03.08
maven 빌드하기  (0) 2019.03.08
Posted by 구차니
Programming/Java(Spring)2019. 3. 8. 19:19

이걸 어찌들어내냐.


[링크 : https://blog.naver.com/talag/220094862895]

Posted by 구차니
Programming/Java(Spring)2019. 3. 8. 15:54

별건 없고

아래처럼 dependencies에 jar을 넣어주면 된다.

dependencies {

    compile files('libs/lombok-1.16.8.jar')

[링크 : https://jsonobject.tistory.com/222]

'Programming > Java(Spring)' 카테고리의 다른 글

Transaction was marked for rollback only; cannot commit  (0) 2019.03.25
spring boot cassandra  (0) 2019.03.08
maven 빌드하기  (0) 2019.03.08
spring 변수 생명주기  (0) 2019.01.08
gradle buildship  (0) 2019.01.02
Posted by 구차니
Programming/Java(Spring)2019. 3. 8. 14:37

pom.xml이 있으면 maven으로 빌드가 가능한건데


maven 설치하기

(패키지 설치가 아니라 maven을 다운로드 받아서 해당 경로 패스 정해주면 끝)

[링크 : https://blog.hanumoka.net/2018/05/23/centOs-20180523-centos-install-maven/]


maven 프로젝트 빌드하기

$ mvn pakage

[링크 : https://brocess.tistory.com/164]

'Programming > Java(Spring)' 카테고리의 다른 글

spring boot cassandra  (0) 2019.03.08
gradle 에 jar 추가하여 빌드하기  (0) 2019.03.08
spring 변수 생명주기  (0) 2019.01.08
gradle buildship  (0) 2019.01.02
spring for android  (0) 2018.12.28
Posted by 구차니
Programming/Java(Spring)2019. 1. 8. 23:02

싱글톤 패턴인데 의도한거랑 다르게 작동하는것 같아서

생명주기가 다른가 하고 찾는 중.. 근데 읽어도 먼 소리인지 모르겠다 ㅠㅠ


[링크 : http://enterkey.tistory.com/300]

'Programming > Java(Spring)' 카테고리의 다른 글

gradle 에 jar 추가하여 빌드하기  (0) 2019.03.08
maven 빌드하기  (0) 2019.03.08
gradle buildship  (0) 2019.01.02
spring for android  (0) 2018.12.28
sts gradule spring boot howto  (0) 2018.12.28
Posted by 구차니
Programming/Java(Spring)2019. 1. 2. 18:58

빌드쉽에 그래들이 포함된거 같은데 좀 헷갈리네..

STS에서 그래들 깔아 두니 자꾸 빌드쉽으로 마이그레이션 하라고 하는데.. 끄응..


[링크 : http://putup.tistory.com/6]

[링크 : https://github.com/eclipse/buildship/wiki/Migration-guide-from-STS-Gradle-to-Buildship]

'Programming > Java(Spring)' 카테고리의 다른 글

maven 빌드하기  (0) 2019.03.08
spring 변수 생명주기  (0) 2019.01.08
spring for android  (0) 2018.12.28
sts gradule spring boot howto  (0) 2018.12.28
STS gradle 버전 문제가.. 혹시..  (0) 2018.12.28
Posted by 구차니