Eclipse无法识别Maven依赖的Springframework JAR文件

时间:2017-05-04 13:45:42

标签: java spring eclipse maven

我正在尝试编译一个java程序,可以看到构建成功完成。但是如果我打开java程序可以看到java springframework依赖包导入的错误。虽然在lib文件夹中有这些jar,但是收到错误。

尝试以下命令,

import tensorflow as tf

sess=tf.Session()    
#First let's load meta graph and restore weights
saver = tf.train.import_meta_graph('my_test_model-1000.meta')
saver.restore(sess,tf.train.latest_checkpoint('./'))


# Access saved Variables directly
print(sess.run('bias:0'))
# This will print 2, which is the value of bias that we saved


# Now, let's access and create placeholders variables and
# create feed-dict to feed new data

graph = tf.get_default_graph()
w1 = graph.get_tensor_by_name("w1:0")
w2 = graph.get_tensor_by_name("w2:0")
feed_dict ={w1:13.0,w2:17.0}

#Now, access the op that you want to run. 
op_to_restore = graph.get_tensor_by_name("op_to_restore:0")

print sess.run(op_to_restore,feed_dict)
#This will print 60 which is calculated 

正在建造一个罐子。

但没有解决jar问题。然后我试着给予。

mvn clean install
mvn package -P local -Dmaven.test.skip=true

获取以下错误消息。我可以在错误中提到的路径中再次看到依赖的jar,但仍面临问题。

任何指针都非常有用。

mvn eclipse:eclipse 

1 个答案:

答案 0 :(得分:0)

似乎有些与eclipse maven插件相关的工件在本地maven repo中被破坏了。

所以,

  1. 删除整个.m2文件夹。 (您也可以先尝试删除.m2中的org文件夹以查看它是否有效)
  2. Fire mvn clean install -U
  3. Fire mvn eclipse:eclipse
  4. 顺便说一句,而不是触发eclipse:eclipse你可以通过File直接导入maclipse中的maven项目 - >导入 - >现有的Maven项目。