Sunteți pe pagina 1din 4

Help me figure out how to deploy a Java

web application (Spring)


Project Description:
Hi,
It's been a while since I've done any Java development and I received a JAR file with what looks to be a
Spring 3 web application and I've been told it can be deployed to Google App Engine.
However, I honestly don't know what to do with it so I'm looking for somebody to give me a hand and
explain what I need to do to get it up and running (and as a plus how to get it to run from Eclipse).
Please start your bid with the word `nuclear` so I can filter out autobids etc.
A little bit more information. Here's what the JAR looks like:
.
src
com
f2f
domain
persistence
security
service
utils
web
META-INF
| jdoconfig.xml
| persistence.xml
war
assets
css
fonts
images
js
WEB-INF

appengine-generated
appengine-web.xml
conf
jsp
lib
messages
web.xml
Thank you for your bid. Looking forward to working with one of you.

Skills required:
Education & Tutoring, Java, Software Development

Bid will end on WESDAY- 25 feb

Project# 2
Creation of parsor, bid price 25 USD, in 3 days
Bid will end on 26 feb
Write a parser (using java programming language ) that can parse the language
generated by the following EBNF descriptions. Your parser should detect whether or
not the input program has any syntax errors. It does not have to specify what and
where the error is.
<program> begin <stmt_list> end
<stmt_list> <stmt> {;<stmt_list>}
<stmt> <assign_stmt> | <if_stmt> | <while_stmt>
<assign_stmt> <var> = <expr>

<var> identifier (An identifier is a string that begins with a letter followed by 0 or
more letters and digits)
<expr> <term> {(+ | -) <term> }
<term> <factor> {(* | /) <factor> }
<factor> identifier | int_constant | (<expr>)
<if_stmt> if (<logic_expr>) then <stmt>
<while_stmt> while (<logic_expr>) <stmt>
<logic_expr> <var> (> | <) <expr> (Assume that logic expressions have only
greater than or less than operators)
begin
You can use the following examples to test your parser.
An input program without syntax errors:

sum1 = var1 + var2;


sum2 = var3 + var2 * 90;
sum3 = (var2 + var1) * var3;
if (sum1 < sum2) then
if ( var1 > var2) then
var4 = sum2 - sum1;
while (var1 < var2)
var5 = var4/45

Some input programs with syntax errors:

var3 = 140;
if (sum1 < sum2) then
var4 = sum2 - sum1
end

end
begin
var3 = var1 + var2;
if (sum1 < sum2) then
var4 = sum2 - sum1;
end

begin
The keyword begin is missing
var2 = var1

The last statement should not


end
with a semicolon
begin

if (var1 < var2) then


if ( var3 > var4) then
var2 = var2 - var1

while ( var1 < var2)


if ( var3 > var4)
var2 = var2 - var1

end

end

The semicolon at the end of the


first statement is missing

begin
total = var1 + var2;
fi (var1 < var2) then
if ( var3 > var4) then
var2 = var2 - var1
end

The keyword if is misspelled

The keyword then is missing

S-ar putea să vă placă și