216 questions
0
votes
1
answer
34
views
Flink dynamic sink routing with confluent schema-registry
I have an Apache Flink app that is using a kafksink with a setTopicSelector
KafkaSink<T>> sink =
KafkaSink.<T>>builder()
.setBootstrapServers(sink_brokers)
...
0
votes
0
answers
50
views
Angular 19 standalone getting error while creating build for dynamic routes
I have created an Angular 19 SSR application where I have standalone components and there are two modules like admin and actors. I have created dynamic routes in admin routing page. It works perfectly ...
0
votes
1
answer
101
views
Dynamic routing with SSG build in NextJS app router [closed]
I am working on a SSG website using NEXTJS app router.
I have generated a static build (OUT).
I want dynamic path like localhost:3000/username
I created src/app/[username]/page.js and when i enter ...
0
votes
0
answers
43
views
vue dynamic route matching with params issues are memory leak and multiple events fired
I have dynamic routes in my router where I load different content depending on the id params, the problem is that as I visit pages without refreshing the page the memory usage starts to increase with ...
0
votes
1
answer
59
views
Angular dynamic component loading through a config file
I have a question about angular dynamic component loading through an environment config file.
Below is a sample of my environment file:
routes: [
{
name: 'auth/logout',
path: '../../...
1
vote
0
answers
31
views
How to Dynamically Manage Route Paths in React to Avoid Manual Updates Across the Application?
I have a Laravel backend with defined routes like this:
Route::get('task-list', [TaskController::class, 'taskListInfo']);
Route::post('task-save', [TaskController::class, 'taskInfoStore']);
Route::put(...
0
votes
0
answers
27
views
Angular SSR - source map files added at the end of url (dynamic routes) - is that normal?
I cannot find the answer, but is that normal, that during SSR I have urls like:
{
"id": 1,
"url": "/event/auth-link.component-AVZNHIWP.css.map",
"...
1
vote
0
answers
231
views
Blog with Dynamic Routing via Content Collections in Astro (SSG Mode)
I'm having trouble with dynamic routing in Astro. I'm working with a Content Collection called "Articles" and then created a route: [slug].astro. However, the slug does not resolve to the ...
0
votes
2
answers
201
views
Next.js Dynamic Route Type Error in searchParams when Fetching Data for Client Component
After creating a dynamic route [id] it contains 2 pages, a server side component where the error is and a client side PolicyVerificationClient.tsx which takes the params Certificatenumber and id.
...
0
votes
0
answers
54
views
Spring Cloud Function with Multiple Beans
I'm building a Spring Cloud Function application with multiple functions (e.g., uppercase, reverse, etc.) for deployment as an AWS Lambda. The function is triggered by data received from AWS IoT Core, ...
0
votes
0
answers
92
views
Nuxt 3 Blog: Article Changes When Language Changes, but Slug Does Not Update
I'm working on a multilingual blog using Nuxt 3, and I'm experiencing an issue where the article content updates correctly when the language is changed, but the slug in the route does not update ...
1
vote
0
answers
44
views
Laravel 11 - I want to create dynamic routing for multi level access but without passing the same parameter each time
In laravel 11 i setup my route like this :
then: function(){
Route::middleware(['web', 'admin'])->prefix('admin')->name('admin.')->group(base_path('routes/admin.php'));
...
0
votes
0
answers
222
views
Expo router - Navigating to dynamic route from URL leads to a render bug on web
HELP!
Hi it is the first post I ever write so please be indulgents and let me know if my post miss some informations :)
I encountered a problem with expo router on web. My application uses a Tabs ...
0
votes
0
answers
100
views
Dynamic routes based on ID with multiple optional sub sections
I am implementing dynamic routing in Astro SSR mode, based on the id.
I can have different routes, with the id on various place like:
foo/bar/12345/my-path
foo/bar/section/12345/my-path
bar/foo/...
2
votes
2
answers
750
views
Vue router gives a warning when adding dynamic route: No match found for location with path "/test"
I add a route dynamically and it works but I get the warning below.
"No match found for location with path "/test".
Code Sandbox demo url.
https://codesandbox.io/p/github/eguvenc/...