How to Set up AWS java project in Eclipse? - java

i am trying to run simple AWS project in Eclipse but not able to do that. I am very new with this. I have already followed all the step given in official site don,t know what i am missing. please if anyone who has already done this guide me.
Thanks a ton....
Sample Code:
https://github.com/naohta/java_hello_dynamodb
Guidlines:
http://aws.amazon.com/eclipse/faqs/#What_is_the_AWS_Toolkit_for_Eclipse &
http://aws.amazon.com/articles/3586?_encoding=UTF8&jiveRedirect=1

Moving to answer from comment.
I will suggest below steps
AWS Toolkit for Eclipse
This is a good tutorial, might help you. http://java.awsblog.com/post/Tx1GZLJAE4RCX4J/Eclipse-New-AWS-Java-Project-Wizard

Related

how to create API documentation from the war file

I m a newbie in coding , please help me I have an api code and I have to generate the documentation , can you help me to do it.
Thank you
I tried to generate the documentation with swagger editor but I think I didn't understand well how to do it

May I add this package to my existing Java project?

I am beginning at Java GUI, so I ask you professional coders to be understading towards to my humble question.
So, I have been coding this small Java project. I came across a problem, which is to query a Json file. During my quest over the internet looking for an answer, I stumbled upon this project on github:
https://github.com/json-path/JsonPath
Which proved to be the solution for my problem. Everything I need to be able to search for specific nodes on a json file is there, hard coded.
My beginner question: Is that possible to include this 'JsonPath' in my existing project? The IDE is Apache Netbeans 10.0 and the project is a Java SE application.
Thanks in advance!
I tried searching Services->Maven repository->Find...
I happened to find this package but I have no clue how to add the package. Also, I am not sure if its possible to add it to my project.
At first I thought doing something like "com.jayway.jsonpath" to my main class would solve my problem - But obvisouly it didn't, that's why I'm asking you guys for some guidance.
You're going to want to use a dependency management tool like Gradle or Maven first. This gives you a place to put all of the third-party dependencies like this one in your project. (Note: how to use or install either of those tools is outside of the scope of this question.)
Then, you just need the Maven coordinates. Luckily the project has those coordinates available.

Custom JDBCUserStoreManager unable to create jar

I am trying to create Custom JDBCUserStoreManager by following the official documentation.
https://docs.wso2.com/display/IS510/Writing+a+Custom+User+Store+Manager
I cant find proper steps in the documentation. Documentation link
Errors which i am getting while deploy jar in wso2 dropins
com.wso2.custom.hvx_userstore.App cannot be found by org.wso2.carbon.user.core_4.4.3Type class java.lang.ClassNotFoundException
com.wso2.custom.hvx_userstore.App cannot be found by org.wso2.carbon.user.core_4.4.3Type class java.lang.ClassNotFoundException
Is there any better documentation for custom JDBCUserStoreManager creation
Need Help on this.
Try this blog post. Read the comments as well since there are some discussions going on that will help you to troubleshoot and find missing resources.
You can download the sample discussed in the blog post here.
You can follow this to write a new custom user store manager.

How to configure mySQL on Eclipse EE (Java)

Downloaded:
Java EE
Eclipse Indigo EE
mySQL 5.5
From this point I have no idea about how to create a mySQL database directly from eclipse. I've found methods which employ WAMP servers, however I'm not aiming to do it that way.
I believe that the first step lies in somehow configuring mySQL with eclipse/java, but I'm kind of lost at this point, I have no idea on how to proceed.
Note: Given that I'm a beginner to this field of CS, my question might lack necessary details, thus if you feel that way then please let me know, I'll edit my question with more details.
Thankyou.
If more help needed, here's a pictuto that's very clear and goes step by step :
http://books.zkoss.org/wiki/Setup_MySQL_DB_in_Eclipse
Take a look at the following links :
http://forums.mysql.com/read.php?39,91363,91363
http://obscuredclarity.blogspot.com/2009/08/setup-mysql-development-in-eclipse.html
http://www.classes.cs.uchicago.edu/archive/2006/spring/10200-1/mysql/JDBC.pdf
From here :
how to use a MySql database within Eclipse (Specifically this answer)
Try this plugin for eclipse. Works with all oracle/mysql/postgre.
No need of external ide like SQLyog for db operations/queries...
click here to get Toad Plugin for eclipse

Having problem to create a RCP project from eclipse-jee-helios

I am doing this for the first time i have eclipsejee-helios-3.6. I want to create an RCP project it doesnot ask me "Would you like to create a rich client application?" it just ask me to make an activator class. when i do this i can see only one class in my project . I am following this example.
hey please give me any solution.
First of all, I would suggest you a better tutorial, which I used to learn RCP development.
Check it out - it is the most up to date tut for RCP dev. (based on Helios)
It gives very detailed, easy to follow step by step instructions & some explanation about the ideas behind the framework.
Hope it helps!
PS. just checked: If you got your installation right, in the create new plugin wizard, you are asked if you want to create an RCP application right below the activator class input field
it was my mistake i was selecting the wrong Target Platform. It should be the "Eclipse version" not "an OSGi framework". Now its working fine. So always see for the Target platform.

Categories