[Ethereum] Possible to create Dapp using EthereumJ

dapp-developmentethereumj

I am familiar creating Dapps by using Web3.js , I could able to do so , even in a normal browser ( without Mist). But wondering if that is possible by using EthereumJ ?

So instead of browser ( web3.js) connecting directing to the network and getting it done, the request should go through our hosted server which serves the data by using EhtereumJ ?

My Intention to use spring mvc web application.

Best Answer

You could probably do this, but it's unlikely to be the best approach.

All three main clients expose a set of APIs via JSON-RPC; this is what web3 apps call. Instead of integrating directly with a client, you should run a stock node, and call these APIs from your webapp.

Related Topic