목록Remix (2)
겉바속촉
http://remix.ethereum.org/ 방문 Storage.sol 작성 compile ganache 가동 (이더리움 네트워 구동 : 예 HTTP://127.0.0.1:7545 ) 5. deploy 6. servlet 프로젝트 생성 7. index.html 작성 후원금 8. MainServlet.java 작성 : (별명주기) @WebServlet("/main") MainServlet.java package web.controller; import java.io.IOException; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet..
구글창에 Remix 를 검색하신 후에 들어가셔도 되고 다음 링크를 타고 들어가셔도 됩니다:) https://remix.ethereum.org/#optimize=false&evmVersion=null&version=soljson-v0.6.6+commit.6c089d02.js Remix - Ethereum IDE remix.ethereum.org solidity 클릭 Storage.sol을 클릭하시면 코드를 살펴볼수 있습니다 1번 line 에는 현재 무슨 버전인지 알려주는 것입니다 그리고 cotract로 가서 보시면 unit 256이라고 있는데요 데이터 타입을 나타내며 256 즉 양의 정수만을 의미한다고 보시면 됩니다:) 이제 컴파일 해보려면 그 다음 버튼을 클릭하셔서 Compile 1_Storage.sol..