我在Intellij中使用Git。每次我改变git分支时,我的工件设置都消失了,所以我必须重置设置。 我想获取存储工件设置的文件,因此我可以在切换分支时将文件放入,以避免重置工件。 我想知道是否有存储工件设置的文件。
另外一个问题,我想在Intellij中打包一个战争,但是自动方式总是丢失一些文件,所以我手动设置了工件。我想知道是否有一种方法可以更好地打包战争。
感谢您的任何建议或帮助。
答案 0 :(得分:1)
您可以通过以下方式输入war文件: 去项目结构 - >文物 - >选择输出目录。
答案 1 :(得分:1)
设置存储在import React, { Component } from "react";
import { StyleSheet, Text, View, Image, ListView } from "react-native";
class BookItem extends Component {
render(){
return (
<View style = {styles.bookItem}>
<Image style = {styles.cover} source = {this.props.cover_URL} /> //does not render the image from API
<View style = {styles.info}>
<Text style = {styles.author}>{this.props.author}</Text>
<Text style = {styles.title}>{this.props.title}</Text>
</View>
</View>
);
}
}
const styles = StyleSheet.create({
bookItem: {
flexDirection: "row",
backgroundColor: "#FFFFFF",
borderBottomColor: "#AAAAAA",
borderBottomWidth: 2,
padding: 5,
height: 175
},
cover: {
flex: 1,
height: 150,
width: 150,
resizeMode: "contain"
},
info: {
flex: 3,
alignItems: "flex-end",
flexDirection: "column",
alignSelf: "center",
padding: 20
},
author: { fontSize: 18 },
title: {fontSize: 18, fontWeight: "bold"}
});
export default BookItem;
目录中(项目根目录内)。你可以consider sharing it via the version control。