sue gari

Greenhorn
+ Follow
since Nov 03, 2010
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by sue gari

In springboot app, Existing classes


After introducing the above class, it creates the bean in ClassB but it gives the following error :

"Unsatisfied dependency expressed through method 'standardJacksonObjectMapperBuilderCustomizer' parameter 1; nested exception is org.springframework.boot.context.properties.ConfigurationPropertiesBindException: Error creating bean with name 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties': Could not bind properties to 'JacksonProperties' : prefix=spring.jackson, ignoreInvalidFields=false, ignoreUnknownFields=true; nested exception is java.lang.IllegalStateException: org.springframework.context.annotation.AnnotationConfigApplicationContext@657c8ad9 has not been refreshed yet"

I also implemented the following solution but it did not work

Any suggestions to resolve would be appreciated.

3 years ago
java -version
java version "1.5.0"
Java(TM) 2 Runtime Environment, Standard Edition (build pap32devifx-20090327 (SR9-SSU ))
IBM J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3 AIX ppc-32 j9vmap3223-20081129 (JIT enabled)
J9VM - 20081126_26240_bHdSMr
JIT - 20081112_1511ifx1_r8
GC - 200811_07)
JCL - 20090327

java version "1.5.0"
Java(TM) 2 Runtime Environment, Standard Edition (build pap32devifx-20071025a (SR6b))
IBM J9 VM (build 2.3, J2RE 1.5.0 IBM J9 2.3 AIX ppc-32 j9vmap3223-20071007 (JIT enabled)
J9VM - 20071004_14218_bHdSMR
JIT - 20070820_1846ifx1_r8
GC - 200708_10)
JCL - 20071025



Are these two versions equivalent although some of the dates are different. I only understand java version "1.5.0". Can someone explain about J9VM, JIT GC and GCL. Thanks,


12 years ago
This is a newbie question. Can you tell me the difference between jax-ws and apache axis. Is it possible to build web services just using jax-ws and not apache axis. What would be advantages and disadvantages.

Thanks.



12 years ago
Thank you for the reply. This is for applications within the company, do you think ws-security is better or SSL. Also do you think ws-security will be supported even in the future.

12 years ago
I have just started learning webservices. Can you guide me as to how to implement security in SOAP. Also which is better top down or bottom up approach. Any documentation in this regard is greatly appreciated. Thanks,
12 years ago
I am just starting to learn about web services. I have found several methods to implement web services in Jboss. We do not use EJB in our environment. Can you please suggest what would be an ideal way to implement web services in Jboss. Also is there a difference in the implementation for jboss 4 and jboss 7.


Thanks,
12 years ago
Thanks for your reply
13 years ago
JSP
I would like to compare something like the following <c:if test="${id.employmentID }><%= Integer.parseInt(anchorValue) %>"> or <c:if test="${id.customerID }>${anchorValue} %>">. Basically employmentID and anchorValue are both strings. I am checking if customerID is greater than anchorValue but the following code above does not seem to work. I would appreciate if someone can suggest an alternative. Thanks.

13 years ago
JSP
response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
response.setHeader("Location", "xxx.jsp");


We are using the above code. Any help is appreciated.

thanks,
13 years ago
JSP
I don't want the parameters as a query string to the url. Is there any other method that I can use to send the parameters. I just want to know if there is something like POST variables that are set in the message body rather as a query string.

13 years ago
JSP
Hello,
I have a jsp page that uses request parameters and then loads another jsp page. Currently the parameters are passed along with the url. Is there any other way we could send the parameters to the target jsp page other than session or hidden fields. The target jsp page uses request.getParameter to get the parameters passed and this target jsp is used by many other jsp pages.

So please keep in mind that whatever method is suggested, it should work with request.getParameter used with the jsp target page. I tried to set request.setAttribute but I believe it requires requires request.getAttribute to get the parameters.
Sorry for the confusion. Any help is appreciated.

Sue
13 years ago
JSP