์๋ ํ์ธ์. ์น ๋ฐฑ์๋๋ฅผ ์์ฃผ์ 12๋ ์ฐจ ๊ฐ๋ฐ์ Sam์ ๋๋ค.
ํ์ฌ ํธ์ฃผ์ ๊ฑฐ์ฃผ์ค์ด๋ฉฐ, ํธ์ฃผ IT ํ์ฌ์์ Team Lead๋ฅผ ๋งก๊ณ ์์ต๋๋ค.
ํญ์ ์ต์๋ก ์ผํ๊ณ ์ฑ๊ณผ๋ฅผ ๋ง์ด ๋ด๋ ๊ฒ์ด ๋ชฉํ์ธ, ๊ฒ์๋ฌ์ง๊ธฐ ์ํด ๊ณต๋ถํ๊ณ ์์ต๋๋ค.
๊ฒฝ๋ ฅ
- ์์ธ๋ ์์๋ ฅ๊ณตํ๊ณผ ์กธ์
- LG CNS -> Vieworks -> Axe Group(Australia)
์ด์์ค์ธ ์ฌ์ดํธ
Links
Posts
Q&A
์๋ฌ๋ถ๋ถ์ด ๋์ ์งํ์ด ์๋๋ค์... ์์กด์ฑ ๋ฌธ์ ์ธ๊ฑฐ ๊ฐ๊ธฐ๋ํ๋ฐ
Did you create a class or interface for MemberRepository?
- 0
- 3
- 1.8K
Q&A
์๋ ํ์ธ์
It seems return type of the method findByid(Long id) should be Optional(Member).
- 0
- 2
- 572
Q&A
์ง์ ๋ง๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ์ ๊ฒฝ์ฐ ์ด๋ป๊ฒ ๋ฐฐํฌ ๋๋๊ฑด๊ฐ์?
We normally never include any built files - jar, war - in the source code repository like GitHub. Instead, we have a separate repository (e.g. Nexus) where the jar file is uploaded, so projects can just declare the dependency (e.g. pom.xml for maven) to download it.
- 0
- 2
- 1.1K
Q&A
MemberService์ @Transactional ๋ถ์ด๋ ์ด์
Though it is just a guess, in the pure jdbc example you might explicitly open/close transaction in the code. On JPA, same functionality is controlled by the Transactional annotation.
- 0
- 2
- 745
Q&A
์๋ ํ์ธ์
API can be used by any agent - web, mobile or other systems. Reason it uses restApi is to simply return data only, as opposed to normal controller returns html element.
- 0
- 2
- 340
Q&A
sql ์๋ฌ
Please attach the error log.
- 0
- 2
- 1.1K
Q&A
๊ฐ์ฌ๋ ์ง๋ฌธ ์์ต๋๋ค!
In the first line, you can only access methods/variables defined in the Reportable interface. In the second line, you can access methods/variables defined in the FactoryCam class which could be larger than Reportable.
- 0
- 2
- 569
Q&A
์ธ์ ์ ๋ธ๋ผ์ฐ์ ๊ฐ ์ข ๋ฃ๋๋ฉด sessionid๋ฅผ ์ ๊ฑฐํ๋์
When browser closes, the session id set in the โbrowser cookieโ is removed. It does not mean that session in the server is removed. However, after the certain amount of time, the session in the server will be also deleted as it wont be called anymore and hit the session max lifetime.
- 0
- 1
- 1.5K
Q&A
์ํ ์ฃผ๋ฌธ ์ ์ฃผ๋ฌธ ๋ด์ญ์ ๊ฐ์ด ๋ค์ด๊ฐ ์์ง ์์ต๋๋ค
Though I need more context to oroperly tackle this question, it is highly likely that orderSearch condition is set in a way query does not return the orders. Please check what is set and what is supposed to set in the orderSearch parameter.
- 0
- 2
- 639
Q&A
MemberRepositoryTest ์ค SQLGrammarException ์๋ฌ ๋ฐ์
2023-02-06 11:19:45.628 ERROR 10204 --- [ main] o.h.engine.jdbc.spi.SqlExceptionHelper : Sequence "HIBERNATE_SEQUENCE" not found; SQL statement:The line above is the root cause of the problem. It seems the sequence is not created, so code errors out while expecting it to exist.
- 0
- 2
- 1K