Questions tagged [seedstack]

SeedStack is an opinionated, easy-to-use Java development stack. It can be used to build different types of projects, with a particular focus on REST micro-services and Web applications. Use this tag for questions referring to the SeedStack development solution and its usage.

SeedStack is a comprehensive software development stack aimed at application or service creation. It addresses both backend and frontend needs in a modular yet seamless solution. It means that you can cherry-pick the components or choose to take advantage of the full stack for maximum development speed.

SeedStack is strongly opinionated and, as such, not an ubiquitous solution for every need. Its main focus is on helping you to build better applications or services, ones that will be valuable assets in the long run and that you can evolve and maintain as long as needed. It does so by providing:

  • A highly modular architecture,
  • Integration of a wide range of curated technologies,
  • Easy-to-use building blocks
41 questions
2
votes
1 answer

Seedstack - MQTT Add-on problem adding user & pasword

I try to connect to MQTT server and I have some problems adding the password: The configuration file is: mqtt: clients: client-ptl-mqtt: serverUri: tcp://rdabeg01.inetpsa.com:1883 clientId: LOCAL_PTL_SIMUL_MQTT connection: …
Jose M
  • 21
  • 2
2
votes
1 answer

seedstack Explicit bindings are required and MYOBJECT is not explicitly bound

I am a newbe using seedstack the "Clean Java development" framework (seedstack.org). My first action here was to create a singleton object and call it in my rest service. But seedstack throws an error... /*** MY SINGLETON ***/ package…
MrStone
  • 23
  • 1
  • 3
2
votes
1 answer

Prevent browser cache issue on Javascript files with RequireJS in SeedStack

using SeedStack 14.7 we are facing a cache issue when uploading a new version on servers: every user have to clear their cache to get the last version of files. I tried to use "urlArgs": "version=2" in the requireConfig part of the fragment JSON…
Finrod
  • 2,425
  • 4
  • 28
  • 38
1
vote
1 answer

How to make the session cookie secure with Seedstack?

I'm using Web sessions in a SeedStack application but needs the session cookie to be secured by the httpOnly flag. Since there is no configuration option for that, how can I achieve this with the current version ?
ymeleouet
  • 23
  • 5
1
vote
1 answer

How to specify a default assembler in seedstack?

I'm using the 19.11 version of seedstack, and I want to use the FluentAssembler assembler to convert an aggregate List into a DTO List. I'm getting the following error when I call the fluentAssembler.assemble method…
1
vote
1 answer

How to configure FEIGN on the client to authenticate against a REST service using SEEDSTACK framework?

I would like to call a REST web service from my client application using FEIGN and SEEDSTACK. The web service, which is developed with SEEDSATCK too, is configured with the following authentication method: "filters: [ authcBasic ]" How to configure…
KatteStone
  • 11
  • 1
  • 3
1
vote
1 answer

use environment var to configure kafka host on seedstack

I'm trying to use env var to configure a kafka on seedstack. The syntax works with mongoDB configuration but not with kafka configuration. here's my mongo conf: env: MONGO_URL: "localhost:27017" MONGO_CREDENTIAL: "" mongoDb: clients: …
Lautre
  • 155
  • 1
  • 3
  • 12
1
vote
1 answer

SeedStack , proxy configuration while doing rest api call during feign client?

I was doing one sipmle rest api call using feign client but upable to call rest api as it was not passing because of proxy. I tried setting up System.setProperties(props); props contain proxy url, and port no. but still it is unable to do rest…
1
vote
1 answer

What's the difference between a Repository and a Finder in Seedstack?

I'm Using Seedstack 16.7 and its Business framework with JPA plugin support. There's 2 ways to acquire data from a datasource. Repositories http://seedstack.org/docs/business/manual/repositories/ They are pretty much the ones that acts in behalf…
Sherpard
  • 48
  • 5
0
votes
1 answer

Seedstack ibm mq commit parameter

I am doing seedstack ibm mq configuration through yaml file But i am not able to find any paramter related message commit Because ibm mq needs to commit it. As it is message is pending @JmsMessageListener(connection = "connection1", destinationName…
user432843
  • 83
  • 1
  • 9
0
votes
0 answers

Metrics : Seedstack addon unable to start the application

Seedstack framework , unable to launch application post adding the metrics addon after following the documentation http://seedstack.org/addons/metrics/ Below is the error trace on application start up org.seedstack.shed.internal.ShedException:…
Ani K
  • 1
0
votes
0 answers

Configuration for glassfish server ( proxy_read_timeout )

I have java application based on seedstack framework, it uses internally glassfish server. I generate a xls file and export it. If the file generation completes in 60 second, it works fine. If the file generation takes more than 60 sec it error out.…
sorab
  • 321
  • 1
  • 4
  • 15
0
votes
1 answer

Replace "Basic Authentication" with "Form Authentication"

Is there a way to replace "Basic Authentication" with "Form Authentication" in W20?. The documentation only refers to the "basicAuth" but not to an authentication with Login (authentication by form). The app is made with AngularJS and W20, in the…
0
votes
0 answers

How to Disable Lower Versions of HTTP TLS in Embedded Java Microservice?

In one of the application having embedded java micro service and migrated to HTTPS from HTTP. Since lower version of HTTPS TLS are still visible that are TLSv1.0 and TLSvc1.1 which need to disable as we are using TLSv1.2 version. In system…
0
votes
1 answer

is there any Seed-stack training available

I'm new to seed stack framework and looking for some training's or step by step tutorials. If anyone will help to understand this framework it would be a big help If you will help me with below code example will be really appreciated • Java …
Amit Golhar
  • 799
  • 4
  • 8
  • 21
1
2 3