[Q] is possible to use looker-kotlin-sdk and append tag in jsp ?

<Question>
1. i am not familiar with new front-end scripts...i now use jsp with spring boot
   can use like below source in jsp using looker-kotlin-sdk (old-jsp coding pattern) ?
   is there any method like below method in looker-kotlin-sdk?

 

 

 

LookerEmbedSDK.createDashboardWithId(runtimeConfig.dashboardId)
  // Scrolls the top of the IFRAME into view when drilling
  .withDialogScroll()
  // Ensures that the tile download and tile alert dialogs remain in view
  .withScrollMonitor()
  // Append to the #dashboard element
  .appendTo('#dashboard')
  ...
  // Finalize the build
  .build()
  // Connect to Looker
  .connect()
  // Finish up setup
  .then((dashboard: LookerEmbedDashboard) => {
    ...
  })
  .catch((error: Error) => {
    ...
  })

 

 

 

 2. is there only way to use react as front-end?

########################################
<ref>
I tested already and know how to use with embed url with jsp 
(1) https://github.com/looker/looker_embed_sso_examples
(2) https://github.com/looker-open-source/sdk-examples (create looker-kotlin-sdk) - create_sso_embed_url
     

0 0 136