Martin Andersson

Greenhorn
+ Follow
since Jan 17, 2008
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 Martin Andersson

Hi,

Im trying to learn Spring web flow (http://www.manning.com/walls4/)

I downloaded SpringPizza source code from: http://www.manning.com/walls4/sia3-code.zip
and built it with Gradle and converted to a eclipse project.

Imported it to eclipse. followed a guide on internet how to convert a java project to a dynamic java project.
Had some dublicate imports, removed this.

After that I had a green eclipse(error free project in eclipse)

Configured Tomcat in eclipse and lunched the application.

Then I try to reach localhost:8080/SpringPizza I get a 404.


I also have deployed the built war file from Cradle directly to Tomcat(drag and dropped in the../webapp folder). I can see the war are unpacked and i found logs from the application but dont see any faults.

Any one got this example to work? I have looked in the web.xml and try'ed to change dispacterservlet , /, /*.

Best Regards
12 years ago
thank you guys, it's clear now.
1. class Comp2 {
2. public static void main(String[] args) {
3. float f1 = 2.3f;
4. float[][] f2 = {{42.Of}, {l.7f, 2.3f}, {2.6f, 2.7f}};
5. float[] f3 = {2.7f};
6. Long x = 42L;
7.
if (f3 == f2 [2] ) // f2[2] = ?

8. System.out.println("true");
9. }
10. }

Hello, what value are on index f2[2] = ? thanks for the help (42.Of}, {l.7f, 2.3f}, {2.6f, 2.7f)