Giter Club home page Giter Club logo

Comments (10)

taycaldwell avatar taycaldwell commented on July 21, 2024

Hi @Priyankachaudhary2606,

Is your question regarding how to debug the client library itself, or a project that uses the client library?

from actions-on-google-java.

Priyankachaudhary2606 avatar Priyankachaudhary2606 commented on July 21, 2024

I want to debug the project given with the boilerplate code.

And I want to build a spring boot project using this library.

from actions-on-google-java.

taycaldwell avatar taycaldwell commented on July 21, 2024

Hi @Priyankachaudhary2606,

The boilerplate currently contains entry points for App Engine and AWS.

For debugging, if you wish to view logs, you can do so by visiting StackDriver Logs if you deployed your app using App Engine, or AWS CloudWatch Logs if you're using AWS lambda.

You can deploy your app using Spring Boot, however you will need to set up your own entry point class for handling requests, similar to the ones we provide for App Engine and AWS.

Spring Boot has been a popular request. Thank you for the suggestion. I will look into providing an entry point for Spring Boot for the boilerplate.

Thanks,

from actions-on-google-java.

Priyankachaudhary2606 avatar Priyankachaudhary2606 commented on July 21, 2024

@taycaldwell
Thank you for the response, Taylor.

from actions-on-google-java.

Priyankachaudhary2606 avatar Priyankachaudhary2606 commented on July 21, 2024

In Spring Boot, the requests are handled by Dispatcher Servlet, that we don't write.

Two Doubts I have:

  1. In Spring Boot, the way to enter the application is main method. So how can we use this library from there. i.e., the Intents will get identified
  2. If we need to create a different entry point for App Engine then how can that be done.

Please help, I want to understand and create an Spring boot application using this library

from actions-on-google-java.

taycaldwell avatar taycaldwell commented on July 21, 2024

For Spring Boot, you should have a SpringBootServletInitializer class that configures your SpringBootApplication that contains all your endpoints, such as handlePost method etc.

Similar to the entry point classes we provide for AWS and App Engine, your SpringBootApplication class can contain an instance of the class containing your intent handler methods.

When receiving a request, your entry point class will call the handleRequest method of your intent handler class.

Hope this explanation helps. If it doesn't I can try to provide examples.

from actions-on-google-java.

Priyankachaudhary2606 avatar Priyankachaudhary2606 commented on July 21, 2024

This is helpful. But if it is possible for you then please provide the examples too.

@SpringBootApplication
public class KtcappApplication extends SpringBootServletInitializer{

@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
	return builder.sources(KtcappApplication.class);
}

public static void main(String[] args) {
	 SpringApplication sa = new SpringApplication(KtcappApplication.class);
        sa.setLogStartupInfo(false);
       sa.run(args);    
}

from actions-on-google-java.

Priyankachaudhary2606 avatar Priyankachaudhary2606 commented on July 21, 2024

@taycaldwell
Can you share a demo project using Java/ Kotlin library with Spring Boot to make actions on google

from actions-on-google-java.

Fleker avatar Fleker commented on July 21, 2024

I answered a StackOverflow question with a bootstrap class using Spring Boot.

from actions-on-google-java.

Priyankachaudhary2606 avatar Priyankachaudhary2606 commented on July 21, 2024

@Fleker
Thank you so much, that worked and clarified my doubt too.

from actions-on-google-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.