I have developed a Java azure function and deployed it through IntelliJ(with Azure toolkit plugin support). I can do local run/debug on the function app from ide, as it nicely supports local run/debug. Now the question is, Is there any way to debug code(or jar) that is deployed on Azure function(not sure if this has to be called remote debugging)?
Tag: azure
Spring Data cosmos @Transactions support
With Azure Cosmos DB transactional batch support available for Cosmos Java SDK 4.7.0, Does Spring Data Cosmos allows transactional operations? I went through Spring Data Cosmos Github Documentation, but didn’t find a reference. Need help if there is a way to implement transaction batch operations via spring cosmos data. If there is no way currently, then what would be the
How to handle blob store url when receive from API
I have an API URL (e.g.: localhost:8080/api/blobs/download/{item-id}). The API itself will return the URL of that item in the Blob Store (for example, https://myaccount.blob.core.windows.net/mycontainer/myitem). Now I have a task that requires user to copy and paste the API URL into the browser, and expect it to view/download the item. The question is how Java can support user browse the Blob
Azure spring boot function-how to pass trigger and input binding both to handleRequest method at same time?
getting below exception when I create tuple of Http trigger and blobinput and send it to handleRequest.. [2021-08-20T09:53:12.816Z] java.lang.UnsupportedOperationException: At the moment only Tuple-based function are supporting multiple arguments [2021-08-20T09:53:12.818Z] at I need to send both inputs to handleRequest method… any clue how to achieve that? Answer Spent some time and the only way I could achieve that what you
Unknown lifecycle phase “.mainClass=com.blobs.quickstart.App”
I ran through this demo (using PowerShell). Everything was fine until I ran the line: mvn exec:java -Dexec.mainClass=”com.blobs.quickstart.App” -Dexec.cleanupDaemonThreads=false then I got the below exception: This is the link from where I followed the steps https://docs.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-java?tabs=powershell#get-the-connection-string Answer As ManojReddy-MSFT suggested: In most cases, this error occurs because of the missing plugin http://www.mojohaus.org/exec-maven-plugin/index.html Can you verify if you have this plugin?
CosmosDatabase.createContainerIfNotExists() -> “Resource with specified id, name, or unique index already exists.”
If I call the the method: CosmosDatabase.createContainerIfNotExists(x) I receive the error message: Resource with specified id, name, or unique index already exists. How I have to interpret this error? The full exception stacktrace: Answer I work around the problem with a try catch block and repeat the operation if this error occur. Debug code show that the container exists after
Azure AD with spring boot with user in local Database
Helo Here, I Hope you are doing well. I’s been few days I’m having this problem. I have a spring boot API using Azure AD authentication thanks to AADResourceServerWebSecurityConfigurerAdapter. Here is …
Unable to get the AuthenticationResult after redirecting to java web-app
I am trying to integrate azure ad into a java web application using openidconnect approach. My web application is deployed on weblogic application server. Reference: microsoft doc Base code that I used is from microsoft github repo: Link After integration, I was able to redirect my login page to Microsoft login page, entered credential and then when Microsoft redirects back
Getting an exception when tried to implement Azure AD authentication and authorization in Spring Boot
I receive the following error: Even though I’ve provided the client ID in application.properties. I followed the following link: https://docs.microsoft.com/en-us/azure/developer/java/spring-framework/configure-spring-boot-starter-java-app-with-azure-active-directory POM: MAIN: CONTROLLER APPLICATION.PROPERTIES I updated my POM with The new error after updating POM: I’ve updated my POM, now it is building fine, but on login I’m getting AADSTS50011: The reply URL specified in the request does not match
@PropertySource fails to autowire required class (Spring Boot 2.3.8.RELEASE)
I have the following class I plan on using to autowire an instance of a Spring class named AADAppRoleStatelessAuthenticationFilter: Although the default-integration.yml file is well placed under /resources (no ‘FileNotFoundException’ is thrown), it seems like during the application start-up, Spring, for whatever reason, is not able to read it’s content (or disregards it while trying to initialize aadAppRoleStatelessAuthenticationFilter). It throws