Reformed
Explore posts from serversKPCKevin Powell - Community
•Created by Reformed on 2/21/2024 in #back-end
Migration of J2EE to spring boot application
yes
31 replies
KPCKevin Powell - Community
•Created by Reformed on 2/21/2024 in #back-end
Migration of J2EE to spring boot application
Ok gonna look into what you said, thanks for pointing me in a direction
31 replies
KPCKevin Powell - Community
•Created by Reformed on 2/21/2024 in #back-end
Migration of J2EE to spring boot application
yea
31 replies
KPCKevin Powell - Community
•Created by Reformed on 2/21/2024 in #back-end
Migration of J2EE to spring boot application
For the @TransactionManagement, in the POJO class, do I have to something to handle it to maintain the functionality ?
31 replies
KPCKevin Powell - Community
•Created by Reformed on 2/21/2024 in #back-end
Migration of J2EE to spring boot application
they said it's part of modernization but then that's above my paygrade
31 replies
KPCKevin Powell - Community
•Created by Reformed on 2/21/2024 in #back-end
Migration of J2EE to spring boot application
I've got something like this
ejb
@Stateless
@Local(NEHandlerLocal.class)
@Remote(NEHandlerRemote.class)
@TransactionManagement(TransactionManagementType.BEAN)
public class NEHandlerBean implements NEHandlerLocal, NEHandlerRemote {
public Measurement retrievePM(Node nodeC, Map<String, String> params, Command cmdVal, ExecutionMode mode) throws xxxException {
xxxx
}
@Override // method from interface
public OperationStatus getOTDRList(String clientSession, Node node, Map<String, String> params, ExecutionMode mode) throws xxxException {
}
It implements a interface, how would I go about that in the POJO class?
Something like this?
public class NEHandlerBean{
public Measurement retrievePM(Node nodeC, Map<String, String> params, Command cmdVal, ExecutionMode mode) throws xxxException {
xxxx
}
public OperationStatus getOTDRList(String clientSession, Node node, Map<String, String> params, ExecutionMode mode) throws xxxException {
}
}
31 replies
KPCKevin Powell - Community
•Created by Reformed on 2/21/2024 in #back-end
Migration of J2EE to spring boot application
To move forward I will need to translate ejb to pojo first and test the pojo on existing functions
31 replies
KPCKevin Powell - Community
•Created by Reformed on 8/18/2023 in #front-end
React: passing props from child to parent
8 replies
KPCKevin Powell - Community
•Created by Reformed on 8/18/2023 in #front-end
React: passing props from child to parent
do i need to send in my backend as well?
8 replies
KPCKevin Powell - Community
•Created by Reformed on 8/18/2023 in #front-end
React: passing props from child to parent
yea usually i would just do props.category.id but that is giving me error as well
8 replies
KPCKevin Powell - Community
•Created by Reformed on 8/18/2023 in #front-end
React: passing props from child to parent
the parent of layout.js is customer, I'm not sure if i even need setselectedcategory
8 replies