Jump to content

Best programming language for robust website


maverick23

Recommended Posts

10 hours ago, maverick23 said:

Wat about server side programming language...are we good to use mysql or is there any better database that is scalable??

MySQL is very robust you can use it

Link to comment
Share on other sites

23 hours ago, maverick23 said:

Generally a website with needs to retrieve information from database is usually build in PHP,MySql....are they any programming languages which are more efficient and easy to build websites with database connectivity,I heard there are many frameworks where we can readily use them instead of coding from scratch...any inputs??

You can use Spring boot which has web support to build production grade applications without worrying about setting up configuration. Can use Web support (  maven dependency) and create rest based services.  Spring has support to various DB dialects and also may be can use JPA/Hibernate ORM . Angular/React lantivi use cheyachu front end.  Frontend and backend could be on different servers and can communicate through end points.  Spring boot helps you to write a service within no time just have spring starter kit and a web dependency and maven update will download all jars needed . If you want video tutorials to get started i can help. Basically working in same tech stack . 

 

Edi below pom.xml is enough to get started .  As you go along you  may need more dependencies based on business logic and architecture . Hope this helps.

 

    <parent>

        <groupId>org.springframework.boot</groupId>

        <artifactId>spring-boot-starter-parent</artifactId>

        <version>1.3.3.RELEASE</version>

     </parent>

 

    <dependencies>

          <dependency>

            <groupId>org.springframework.boot</groupId>

            <artifactId>spring-boot-starter-web</artifactId>

        </dependency>

  </dependencies>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...